bopritchard
Programmer
i'm setting a row class to row which is supposed to set a border but i can't get it to save my life...what am i doing wrong?
My Table
My style sheet
My Table
Code:
<TABLE class="mnuTable" align=center cellpadding=0 cellspacing=0 id="Table1">
<TR>
<TD><a id="JOMenu1_mnuContactInfo" class="mnuButton1" href="blahblah">Contact Info</a></TD>
</TR>
<tr class="row"><td ></td></tr>
<tr>
<td><a id="JOMenu1_mnuAdditionalSKills" class="mnuButton2" href="blahblah">Additional Skills</a></td>
</tr>
<TR><TD> </TD></TR>
</TABLE>
Code:
.mnuTable
{}
.mnuTable .row
{
position:absolute;
z-index:-1;
height:20px;
background-color:#A21C1F;
border:3px;
border-style:solid;
border-color:black;
}
.mnutable .row td
{
border:3px;
border-style:solid;
border-color:black;
}
.mnuTable a.mnuButton1
{
position:relative;
padding:5px,5px,5px,5px;
border:#3369AA 2px solid;
border-bottom:0px;
height:23px;
background-color:#a21C1F;
color:#ffffff;
text-decoration: none;
margin-bottom:-12px;
z-index:0;
}
.mnuTable a.mnuButton1:hover
{
text-decoration: underline;
}
.mnuTable a.mnuButton1:active
{
text-decoration: underline;
}
.mnuTable a.mnuButton2
{
padding:5px,5px,5px,5px;
border:#3369AA 2px solid;
border-top:0px;
height:23px;
background-color:#a21C1F;
color:#ffffff;
text-decoration: none;
margin-top:20px;
}
.mnuTable a.mnuButton2:hover
{
text-decoration: underline;
}
.mnuTable a.mnuButton2:active
{
text-decoration: underline;
}