I'm having a major *simple* issue

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!

For one thing, the CSS you posted doesn’t match the HTML you posted…but you give this

href=“about”

There isn’t a .html there, .php (whatever extension you have)