Hi bluewalrus i have the same problem here, i've already try your suggestion
You could use the hover css state for the element
this is my code:
Code:
.ya a {
position:fixed;
display:block;
width:400px;
height: 20px;
background:no-repeat;
margin-left:-50px;
margin-top:-100px;
}
.ya a:hover {
position:absolute;
display:block;
width:400px;
height: 200px;
background: transparent url(openImgInHover.png) no-repeat;
background-position:bottom right;
padding-bottom:100px;
padding-right:80px;
}
this what i put in the body
Code:
<td colspan="2" rowspan="3" align="right" valign="middle" class="ya">
<a href="indexCarousel.html" onmouseover="document.images['s1a'].src='images/homeFlash/carousel-icon-hover.png';" onmouseout="document.images['s1a'].src='images/homeFlash/carousel-icon.png';">
<img src="images/homeFlash/carousel-icon.png" name="s1a" id="s1a" border="0" title="carousel-flash definition" />
</a>
</td>
and it's true ie looks like a mess, is there some code to fix this problem or may be there's something wrong with my css code.
Bookmarks