Hi there,
I'm currently switching to DNN and now I have problems with the mainmenu skinning.
In my old site the Mainmenu is build up with the following HTML Code:
<tr>
<td class="menulinks" onmouseover="this.style.backgroundColor='#636B84'" onmouseout="this.style.backgroundColor='#FFffff'">
<a href="index.asp" onfocus="blurLink(this);" class="men">Manuitem</a></td>
</tr>
The following CSS classes are used:
td.menulinks
{
background-color:White;
text-decoration:none;
width:100;
border:solid 1px black;
padding-left:8px;
}
a:link.men {
text-decoration: none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: black;
width:100px;
height:15px;
}
a:visited.men {
text-decoration: none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: black;
width:100px;
height:15px;
}
a:hover.men {
text-decoration: none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 10pt;
color: black;
background-color:#636B84;
width:100px;
height:15px;
}
The menu looks like this:
How can I make the DNN menu look like this?
Thx in Advance
Steve