bopritchard
Programmer
here is my code
<TABLE class="gridMain" id="Table1">
<TR>
<TD>
<a id="JOMenu1_mnuContactInfo" class="mnuButton" href="blahblahblah">Contact Info</a>
</TD>
</TR>
</TABLE>
my css contains
.gridmain .mnuButton
{padding:5px,5px,5px,5px;border:#3369AA 1px outset;height:23px;background-color:#A21C1F;color:#ffffff;
}
which works fine but how do i set the 'a' styles like link, hover, etc...
.gridmain .mnuButton a:link
seems to do nothing
<TABLE class="gridMain" id="Table1">
<TR>
<TD>
<a id="JOMenu1_mnuContactInfo" class="mnuButton" href="blahblahblah">Contact Info</a>
</TD>
</TR>
</TABLE>
my css contains
.gridmain .mnuButton
{padding:5px,5px,5px,5px;border:#3369AA 1px outset;height:23px;background-color:#A21C1F;color:#ffffff;
}
which works fine but how do i set the 'a' styles like link, hover, etc...
.gridmain .mnuButton a:link
seems to do nothing