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
