Hi again :)
I have a problem...(naturally...will that day ever come when Im here to help! (please note no question mark) :)
Anyway, Im trying to have a image that works as a link but changes into another image when you hover over it and which I imagine is also a link . I did try to figure this one out and found code on you tube:
css:
html
<a class="homebutton" href="$">home</a>
css
a.homebutton
{
display:block;
width:123px;
height:11px;
text-indent:-5000px;
background:url(images/homebutton.jpg);
}
a:hover.homebutton
{
background-position: -124px 0;
}
Hence the image itself is of the two images togeather the total dimensions being 247 x 11px
Problem being its not working for me....any help really appreciated also is the above the best way to do roll overs in principle?
Any advise sincerely appreciated.