I have a simple button that I need to link to a page. The problem is is that when I rollover the button the button won’t direct me to the link but the button displays fine. This is the code:
HTML::
<a class=“viewProject” href=“about” title=“View Project Details”>Read More</a>
CSS::
.rmore
{
display: block;
width: 152px;
height: 25px;
background: url(“…/images/rm-bttn.gif”) no-repeat 0 0;
position:relative;
top:0px;
left:400px;
text-indent:-9999em;
}
.rmore:hover
{
background: url(“…/images/rm-bttn.gif”) no-repeat 0 0;
background-position: 0 -25px;
}
Thanks in advance!