Thanks Timo, it is a great website, and it solved half my problem.
I can use the submenuitembreadcrumbcssclass to highlight the submenu current selection, but the rootmenuitembreadcrumbcssclass doesn't work for the root menu.
I added this to the skin.ascx file
<td><dnn:SOLPARTMENU runat="server" id="dnnSOLPARTMENU"
submenuitembreadcrumbcssclass="BreadcrumbSubTab"
rootmenuitembreadcrumbcssclass="BreadcrumbSubTab"
...
And then I added this to the skin.css file
.BreadcrumbSubTab {
background-color: #0000ff;
color: #ffffff;
font-family: Trebuchet MS, Tahoma, Verdana;
font-size: 9pt;
font-weight: bold;
border-top: 0px solid;
}
The subtab works great, but the root tab doesn't work.
Any ideas?