473,799 Members | 3,061 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Transparent gif screws up display.

Jim
Now this is just weird. And yes, I validated the html and the stylesheet.

I created a transparent gif image in Paint Shop Pro 7. I made the mistake of making a
transparent png and went along merrily until I viewed the pages (it's a multi-page three and
two column site with an underlying stylesheet) in IE6. The transparent png worked fine in
Mozilla but broke IE6. Sooooo, I recreate the image as a gif and it seems to work just fine
in both Mozilla and IE6. That is until I refresh the screen in IE. Then for some reason the
entire center column just disappears.

That's weird but it get weirder.

If I switch pages the center column returns. That is until I refresh the screen. Then bye-
bye. This happens on each page.

The transparent gif is on the top of the left column and the column is set to overlap the
masthead. The center column has a light yellow background to offset it from the white
backgrounds of the left and right columns and is usually filled with black text. All this is
setup in the stylesheet.

God, I hate IE
Jul 20 '05 #1
5 7531
Jim wrote:
I created a transparent gif image in Paint Shop Pro 7. I made the mistake of making a
transparent png and went along merrily until I viewed the pages (it's a multi-page three and
two column site with an underlying stylesheet) in IE6. The transparent png worked fine in
Mozilla but broke IE6. Sooooo, I recreate the image as a gif and it seems to work just fine
in both Mozilla and IE6. That is until I refresh the screen in IE. Then for some reason the
entire center column just disappears.
This may not necessarily have anything to do with the transparent image,
it just could be an innocent by stander in more serious and confusing IE
bug. For example, this bug I found recently causes content to disappear
completely when the window is resized.

http://www.lachy.id.au/dev/css/bugs/ie/disappear/

It's not exactly the same symptoms as your bug, but the result is
similar, and could possibly be related. Note that the current
desciption I have in that bug may not be fully correct, I've been told
there are some circumstances where it doesn't work as I described. I've
been intending to do up some more test cases, but haven't got around to
it yet.

BTW, it's not spacer gif is it? What's the point of a fully transparent
gif when stylesheets are used?
God, I hate IE


Yeah, God Hates IE too. :-)

--
Lachlan Hunt
http://www.lachy.id.au/

Please direct all spam to ab***@127.0.0.1
Thank you.
Jul 20 '05 #2
Jim
In article <MP************ ************@ne ws.comcast.giga news.com>,
st************@ aequalis.com says...
Now this is just weird. And yes, I validated the html and the stylesheet.

I created a transparent gif image in Paint Shop Pro 7. I made the mistake of making a
transparent png and went along merrily until I viewed the pages (it's a multi-page three and
two column site with an underlying stylesheet) in IE6. The transparent png worked fine in
Mozilla but broke IE6. Sooooo, I recreate the image as a gif and it seems to work just fine
in both Mozilla and IE6. That is until I refresh the screen in IE. Then for some reason the
entire center column just disappears.


Never mind.

I decided to skip transparent gifs and just took all the images and aligned them on the page
to look like one is "over" the other.

And I still got the disappearing center column. Then I tried viewing the page, and refreshing
it, on a couple of other computers.

Evidently, it only screws up on my production computer.

heavy sigh.

Well, at least I taught myself how to crop and line up images in CSS.

Jul 20 '05 #3
Jim
In article <5q************ **@news-server.bigpond. net.au>, la**********@la chy.id.au.invalid
says...

BTW, it's not spacer gif is it? What's the point of a fully transparent
gif when stylesheets are used?
God, I hate IE


Yeah, God Hates IE too. :-)


No, I have a masthead at the top of the screen and normally, the left and right column (3-
column design) would line up just under the masthead (130px down). But I got clever and
"overlayed" a transparent gif (I took a photo of someone and took out the background) so that
the head partially covered the masthead.

To do this I set the left column, in the style-sheet, to just 20px down from the top of the
screen and it made a nice effect.

This is probably considered a kludge in strick design terms but I thought it rather clever.
Of course, (see my other post) the gif had nothing to do with the disappearing column.

It's all fixed now, and all the images line up to each other to bring the effect I wanted.

Jul 20 '05 #4
Lachlan Hunt wrote:
Jim wrote:
God, I hate IE


Yeah, God Hates IE too. :-)


As long as you're in communication with Him, perhaps you could ask him
to smite IE when he has a moment? :-)

--
Brian (remove ".invalid" to email me)
http://www.tsmchughs.com/
Jul 20 '05 #5
On Sat, 21 Aug 2004 12:02:53 -0400, Jim wrote:
Now this is just weird. And yes, I validated the html and the stylesheet. ..
URL?
..entire center column just disappears.


Sounds like it might be the 'peekaboo' bug..
or any one of a mutitude of other IE f**k-ups
which can be determined upon examination of
the ..URL.

--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
11692
by: R.Marquez | last post by:
I am trying to create a simple script that Opens an existing PNG and resaves it with a transparent color. With the command line version of ImageMagic this is an easy endevor (and my current solution). I can simply do something like: convert -transparent black image.png image-transparent.png (That makes anything black transparent in the saved image.) It would seem that using PIL would make this simmilarly simple, but so
6
3601
by: Tom | last post by:
why doesn't user control support transparent ? even after you programmatically make it transparent the controls that you add on it still doesn't transparency where they normally would in a winform why is that ? Tom
1
20184
by: Efkas | last post by:
My application have some level : 1. MyButton class with Label inheritance 2. MyComponent as User Control loading and positionning some of MyButtons 3. MyApp loading and positionning MyComponent I prefer don't insert a background in MyComponent, and using the MyApp one as general background with MyComponent positionned, but I am not able to have MyComponent background transparent.
0
2628
by: eruess | last post by:
Here's the scenario: I've got a whole bunch (for the sake of argument, let's say thousands) of different little 32x14 .png files that act as buttons all over a very large website. Each button image has 4 transparent pixels; the upper left, upper right, lower left & lower right. This is to help give the otherwise square button graphic a slightly rounded look to it.
2
8576
by: Allan | last post by:
I've been trying to get this to work for days. I have a form which needs to be transparent (only the form background). On the form there are two images (32 bit PNGs) with alpha channel information, in one case the alpha information is used to display a shadow, and the other has a shadow and a few other things. One of these images will change on a random basis (every five minutes or so) and the other is the background for display data. ...
7
20230
by: Martin | last post by:
I'm using the code show below (in VB.Net 2003) to create an image. I want to save this image to a .PNG file such that when I subsequently display it as part of a web page, the background of the image will be transparent. This test/learning code simply draws a diagonal green line across a square box. When I display the resulting file on a web page, I want only the line itself to be visible but what is happening is that the entire "box"...
3
5002
by: JJ | last post by:
I remember reading somewhere that transparent forms will not display correctly on some systems. The Microsoft help says the about the opacity setting: "Windows 2000, Windows Server 2003 family Platform Note: This property has no effect on platforms that cannot display layered windows." and this about transparent areas of forms: "Monitors set to a color depth of greater than 24-bit can display problems with certain parts of the form...
2
2720
by: Trond Michelsen | last post by:
Hi. I have a transparent PNG-image that I would like to display on top of the rest of the web page. I've already got this part working. But, I'd like the background (as in "the part of the image that is transparent"), to be semi transparent instead. So, I've wrapped the image in a div-tag with the style "opacity: .70" instead. This gives me pretty much the semi transparency that I'm looking for, except that this makes the entire image...
0
9686
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9540
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10475
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10222
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7564
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3757
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2938
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.