would this make the new css in addition to the primary css or replace it completely?
It would be cool if it were in addition to, then I could just replace the broken pieces with something that works...
Main Topics
Browse All TopicsI have a site I'm putting together that works great in all browsers but breaks in IE6 and earlier.
Specifically I lose translucency in my png images (full transparency works with js) and I lose the forced min height of a div.
You can see the site at http://69.89.31.152/~pmasy
Is this fixable? Or, how could I setup my css to adjust (and look better) in IE6? If I could make the areas that should be translucent the same color as the body (but only for IE6 and earlier) that might work. Then I only have to address keeping the div at a minimum height.
Also, once I load some of my transparent images, if I reload them they lose their transparency... Any way to fix that?
All help is genuinely appreciated!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You can also fix the min height issue by doing the following in s single CSS file:
// the following will set height in IE6 (ie six interprets height as min height)
.class {
height: 100px;
}
// now add the following to alter the min height for browsers that use it
// IE6 does not understand the child selector(>)
// PARENT is the classes imediate parent element
PARENT>.class {
height: auto;
min-height: 100px;
}
you can also use this method to specify different images for IE6 and other browsers specifying a .gif image for ie6 and a png with transparency for other browsers. That way the image will appear in IE6, it just won't look as good.
Business Accounts
Answer for Membership
by: B_DorseyPosted on 2007-11-27 at 11:01:56ID: 20360318
min-height, and png does not work in IE6, you can add another css sheet and in your html you hide it from the other browsers like.
<!--[if lt IE 6]>
<link href="my_IE6.css" rel="stylesheet" type="text/css">
<![endif]-->