OK, I have gone to the dnn:Menu but still no right separator.
<dnn:MENU runat="server" id="dnnMENU" ProviderName="DNNMenuNavigationProvider"
ClearDefaults="true"
CSSControl="MainMenuBar"
CSSContainerRoot="MainMenuContainer"
CSSNode="MainMenuItem"
CSSNodeRoot="MainMenuRootItem"
CSSContainerSub="MainMenuSubMenu"
CSSBreak="MainMenuBreak"
CSSNodeHover="MainMenuItemHover"
CSSRightSeparator="RightSeparator"
IndicateChildren="false"
userootbreadcrumbarrow="false" />
(Is there another way to loose the root bread crumb arrow? This seems like old solpart>?)
CSS..........................
.MainMenuContainer {
background-color: transparent;
}
.MainMenuBar {
cursor:auto;
height:23px;
line-height: 20px;
background-color: Transparent;
}
.MainMenuItem { /* Add TD if yes for tables option for menu */
cursor:auto;
color: #FFFFFF;
font-size: 12pt;
font-weight: bolder;
text-transform: uppercase;
background-color: Transparent;
font-family: "Times New Roman";
white-space: nowrap; /*Optional - Word wrapping menu item*/
height: 22px;
}
.MainMenuRootItem { /* Add TD if yes for tables option for menu */
cursor:auto;
color: #FFFFFF;
font-size: 12pt;
font-weight: bolder;
text-transform: uppercase;
background-color: Transparent;
font-family: "Times New Roman";
white-space: nowrap; /*Word wrapping menu item now optional*/
padding: 3px 8px 5px 8px; /* creates spacing between root menu items */
height: 22px;
}
.MainMenuItemHover {
color: #254C43;
background-color: transparent;
height: 22px;
}
.MainMenuItemHover td {
background-color: #9E7F23;
height: 22px;
}
.MainMenuIcon {
cursor:auto;
text-align: center;
width: 3px;
height: 22px;
}
.MainMenuSubmenu {
background-color: #9E7F23;
border: 1px solid black;
z-index: 1000;
cursor:auto;
filter:progid:DXImageTransform.Microsoft.Shadow(color='#696969', Direction=135, Strength=3);
padding: 2px 4px 2px 4px; /* creates spacing between sub-menu items */
}
.MainMenuBreak {
height: 1px;
font-size: 1px;
}
.MainMenuArrow {
border-right: #dedede 1px solid;
border-bottom: #dedede 1px solid;
border-top: #dedede 0px solid;
font-family: webdings;
font-size: 10pt;
cursor:auto; /* arrows will not display if function is not set in ascx/xml file*/
}
.MainMenuRootMenuArrow {
font-family: webdings, sans-serif;
font-size: 10pt;
cursor:auto; /* arrows will not display if function is not set in ascx/xml file*/
}
.RightSeparator {
width: 5px;
height: 20px;
background-image: url(rightsep.jpg);
}
And now, how do I get the icon area for the submenus to go away?