ah ok, i didnt have any text there to start with…
when i put the following into my website, it creates a rollover over button using a double image, however the button if clicked takes me to the same page and i want it to take me to another page in my website.
so my HTML is
<span class=”displace”>test-animals.png</span>
and my CSS is
a.rollover {
display: block;
width: 90px;
height: 45px;
text-decoration: none;
background: url(images/test-animals.png);
}
a.rollover:hover {
background-position: -90px 0;
}
.displace {
position: absolute;
left: -5000px;
}
thanks