Hey. I have rollover buttons on my website. So I have the normal button image there, and the rollover one right on top of it. By default, it's set to invisible, and it is only visible in hover. This is my CSS code:
And the HTML:Code:ul#nav li a span { visibility: hidden; } ul#nav li a:hover span { visibility: visible; }
Now... this works fine in Firefox. But in IE, it's fine until I scroll over the image, and it comes up with broken image picture. Did I do something wrong?HTML Code:<ul id="nav"> <li><a href="http://google.com/" id="nav1"><span><img src="images/nav1_hover.png" alt="Page 1" /></span></a></li> <li><a href="http://google.com/" id="nav2"><span><img src="images/nav2_hover.png" alt="Page 2" /></span></a></li> </ul>
EDIT:
The original images are specified in #nav1 and #nav2. They work fine.


Reply With Quote
Bookmarks