vote up 0 vote down star

Hi.. I am seeing weird behavior in IE 7 and Chrome with changing the opacity on a transparent background png in my navigation.

The nav is just a simple ordered list something like:

 <ul class="tabs">
   <li><a id="tab-approach" href="our-approach/" >Our Approach</a></li>
   <li><a id="tab-service" href="services/" title="Services">Services</a></li>
    <li><a id="tab-communication" href="communication/">Communication</a></li>
 <li><a id="tab-about" href="about/">About Us</a></li>
   <li><a id="tab-contact" href="contact/">Contact</a></li>
  </ul>

and the CSS :

ul.tabs {
    list-style: none;
    margin: 0;

}

ul.tabs a {
    float: left;
    outline: none;
    text-indent: -9999px;
}

div.header ul.tabs {
width: 631px;
}

ul.tabs a {

    height: 48px;

filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
}
div.header ul.tabs a:hover {

filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity: 1;
opacity: 1;
}
div.header ul.tabs li {
float: left;
margin-left: 0px;
}
div.header ul.tabs a#tab-approach {
    margin: 0;

    width: 154px;
    background: url(../images/main_nav/approach.png) 0 0 no-repeat;
}

div.header ul.tabs a#tab-service {
    	margin: 0;
    width: 95px;
    background: url(../images/main_nav/services.png) 0 0 no-repeat;
}

div.header ul.tabs a#tab-communication {
    margin: 0;
    width: 158px;
    background: url(../images/main_nav/communication.png) 0 0 no-repeat;
}

div.header ul.tabs a#tab-about {
    	margin: 0;
    width: 113px;
    background: url(../images/main_nav/about.png) 0 0 no-repeat;
}

div.header ul.tabs a#tab-contact{
    	margin: 0;
    width: 111px;
    background: url(../images/main_nav/contact.png) 0 0 no-repeat;
}

Looks fine in Firefox but check out the screenshots to see how the other browsers are displaying this. Anyone have any idea what is going on here? I was mousing over About Us for all of the screenies and you can see that the hover state (100% opacity) renders fine in Chrome. They are displayed in the order FF, IE 7, Chrome

Hrmphh.. not sure why the images are not showing up here.. I am new to this site. Here are the image links

http://cornerstonewa.com/temp/firefox.jpg

http://cornerstonewa.com/temp/ie.jpg

http://cornerstonewa.com/temp/chrome.jpg

flag

57% accept rate
You may wish to link to the images in question that you are using in case its a format related issue – Kent Fredric Mar 25 at 2:52

1 Answer

vote up 1 vote down check

I believe the reason why the rendering looks bad in IE7 is because IE7 doesn't handle opacity well. Rick Strahl noticed the problem in a blog post titled Internet Explorer 7.0 and Opacity: Not even close!

One comment to that blog post linked to an IE Blog post Notes on the interaction of ClearType with DXTransforms in IE7 where we learn that the IE Team is aware of the problem and offers an "explanation" that includes this gem:

"As our users also noticed, the ClearType text then looks extremely blurry - unfortunately these two technologies just don’t mix well. This is because the basic convolution transform used by DXTransforms does not take into account the spatial nature of ClearType."

I believe the IE Team was able to incorporate ClearType spatial convolution transform accountability into IE8 but, alas, this did not make it into IE7.

link|flag
Meh.. another day.. another reason I despise IE. I ended up just doing CSS image rollovers.. thanks for the response. – zac Mar 25 at 18:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.