I have a problem I need to delete the spaces between my button and the rightSeparator.
I'm attaching the source code bellow:
solpartmenu:
<dnn:SOLPARTMENU runat="server"
ID="menuLeftNav2"
ClearDefaults="true"
SeparateCss="false"
MenuEffectsMouseOverDisplay="none"
RootMenuItemActiveCssClass="LeftNav2_RootMenuItem_Active"
RootMenuItemCssClass="LeftNav2_RootMenuItem"
RootMenuItemSelectedCssClass="LeftNav2_RootMenuItem_Active"
MenuItemSelCssClass="LeftNav2_MenuItem_Active"
MenuItemCssClass="LeftNav2_MenuItem"
MenuBreakCssClass="LeftNav2_MenuBreak"
Level="Child"
SubMenuCssClass="LeftNav2_SubMenu"
SubMenuItemLeftHtml="> "
ExpandDepth="2"
UseArrows="false"
UseSkinPathArrowImages="false"
UseSubMenuBreadCrumbArrow="false"
UseRootBreadCrumbArrow="false"
ControlOrientation="Vertical"
MenuIconCssClass="LeftNav2_MenuIcon"
></dnn:SOLPARTMENU>
Skin.css code
.LeftNav2
{
padding-top: 10px;
}
.LeftNav2_SubMenu
{
background-image: url(images/leftnav2_menuitem_bg.gif);
background-position: top left;
background-repeat: no-repeat;
border-right: 1px solid #003566;
background-color: Transparent !important;
padding: 0px 0px 0px 6px;
/width:250px;
height:44px;/
cursor: pointer;
}
.LeftNav2_SubMenu2
{
border-bottom: 1px solid #003566;
padding: 12px 12px 12px 14px;
}
.LeftNav2_MenuIcon
{
display: none;
}
.LeftNav2_RootMenuItem, .LeftNav2_RootMenuItem_Active,
.LeftNav2_MenuItem, .LeftNav2_MenuItem_Active
{
font-size:12px;
color:#003566;
background-repeat: no-repeat;
background-position: top left;
cursor: pointer;
}
.LeftNav2_MenuItem_Active
{
color: Red;
text-decoration: none;
font-weight: bold;
}
.LeftNav2_RootMenuItem
{
color:#003566;
background-color: #F3F3F3;
background-image: url(images/leftnav2_rootmenuitem_bg.gif);
/height:44px;/
}
.LeftNav2_RootMenuItem_Active
{
text-decoration: none;
color:#003566;
/font-weight: bold;/
background-color: #fff;
background-image: url(images/leftnav2_rootmenuitem_active_bg.gif);
/height:44px;/
}
.LeftNav2_RootMenuItem TD, .LeftNav2_RootMenuItem_Active TD
{
padding: 8px 6px 8px 2px;
border: 0px solid transparent;
white-space: normal;
/height:44px;/
}
Pleaee help me with this problem.