chaser7016
03-30-2009, 10:22 AM
Hi
Recently I had this same issue in all non IE browsers and fixed it by adding z-index: 106 to the classes (Issue is Im not able to click links resting within a png.)
Now Im having this same issue in IE6 and trying to fix doing the same thing and others to get these links on pngs to click, but no luck yet!
Below is code Im working with..
HTML
<div id="nav">
<ul>
<span style="position: relative; top: 18px; left: 0px; color: rgb(87, 175, 237); font-size: 96.8%; z-index:200;">
<span style="color: white;">Prefer</span>
a quarter? Click
<a style="color: rgb(255, 255, 255);" href="google.com">here!</a>
</span>
</ul>
</div>
CSS
#nav {
background:url(../images/nav.png) no-repeat;
display: inline;
position:relative;
top: -12px;
right: 30px;
width: 350px;
height: 75px;
z-index: 106;
font-size: 97.8%;
}
Before I had both absolute, so changed them to both relative, but still no luck. I even did one absolute and one relative and still no dice.
Appreciate any suggestions one can offer!
cheers!
Recently I had this same issue in all non IE browsers and fixed it by adding z-index: 106 to the classes (Issue is Im not able to click links resting within a png.)
Now Im having this same issue in IE6 and trying to fix doing the same thing and others to get these links on pngs to click, but no luck yet!
Below is code Im working with..
HTML
<div id="nav">
<ul>
<span style="position: relative; top: 18px; left: 0px; color: rgb(87, 175, 237); font-size: 96.8%; z-index:200;">
<span style="color: white;">Prefer</span>
a quarter? Click
<a style="color: rgb(255, 255, 255);" href="google.com">here!</a>
</span>
</ul>
</div>
CSS
#nav {
background:url(../images/nav.png) no-repeat;
display: inline;
position:relative;
top: -12px;
right: 30px;
width: 350px;
height: 75px;
z-index: 106;
font-size: 97.8%;
}
Before I had both absolute, so changed them to both relative, but still no luck. I even did one absolute and one relative and still no dice.
Appreciate any suggestions one can offer!
cheers!