|
I have been spending the last 3 days trying to resolve this
issue so please help me.
I am using the Solpartmenu horizontally with a fixed width
td, but I am not sure if Mozilla doesn’t want to wrap the text, or if Mozilla
just doesn’t want to stick to the width.
My ASCX code:
<dnn:MENU runat="server"
id="dnnMENU"
useskinpatharrowimages="true"
rootmenuitemcssclass="MainMenu_RootMenuItem"
rootmenuitemactivecssclass="MainMenu_RootMenuItemActive"
RootMenuItemSelectedCssClass="MainMenu_RootMenuItemSelected TD"
UseRootBreadCrumbArrow="false"
RightSeparator=" "
rightseparatoractive=" "
submenuitemactivecssclass="MainMenu_SubMenuItemActive"
submenuitemselectedcssclass="MainMenu_SubMenuItemSelected" />
My CSS:
/* Main Menu */
.MainMenu_MenuContainer {
background-image: url(images/menu_normal_backgound.jpg);
background-position: top;
padding:0px
0px 0px 0px;
background-color: Black;
}
.MainMenu_MenuBar {
cursor: pointer;
cursor: hand;
background-color: transparent;
height: 62px;
}
.MainMenu_MenuItem {
border: solid
1px #2b2b2b;
background-color:
#949292;
height: 31px;
width: 146px;
padding: 5;
cursor: pointer;
cursor: hand;
color: white;
font-family: Tahoma, Arial, Helvetica;
font-size: 10pt;
font-weight: normal;
font-style: normal;
text-align: center;
}
.MainMenu_MenuItemSel {
border-left: #2b2b2b 1px solid;
border-bottom: #2b2b2b 1px solid;
border-top: #2b2b2b 1px solid;
border-right: #2b2b2b 1px solid;
background-color: #00a3fa;
}
.MainMenu_MenuIcon {
display: none;
}
.MainMenu_SubMenu {
background-color: #00a3fa;
z-index: 1000;
cursor: pointer;
cursor: hand;
}
.MainMenu_MenuBreak {
height: 0px;
}
.MainMenu_RootMenuItem TD {
cursor: pointer;
cursor: hand;
color: #858484;
font-family: Tahoma, Arial, Helvetica;
font-size: 10pt;
font-weight: normal;
font-style: normal;
text-align: center;
text-transform : uppercase;
background-color: Transparent;
width: 156px;
height: 62px;
background-image: url(images/menu_normal_backgound.jpg);
}
.MainMenu_RootMenuItemActive TD {
cursor: pointer;
cursor: hand;
color: white;
font-family: Tahoma, Arial, Helvetica;
font-size: 10pt;
font-weight: normal;
font-style: normal;
text-align: center;
text-transform : uppercase;
background-color: Transparent;
width: 156px;
height: 62px;
background-image: url(images/menu_over_background.jpg);
}
.MainMenu_RootMenuItemSelected TD {
background-image: url(images/menu_over_background.jpg);
background-repeat: repeat-x;
cursor: pointer;
cursor: hand;
color: white;
font-family: Tahoma, Arial, Helvetica;
font-size: 10pt;
font-weight: normal;
font-style: normal;
text-align:center;
text-transform: uppercase;
width: 156px;
height: 62px;
}
.MainMenu_SubMenuItemActive {
border: solid 1px #2b2b2b;
background-color:
#00a3fa;
height: 31px;
width: 146px;
}
.MainMenu_SubMenuItemSelected {
border: solid 1px #2b2b2b;
background-color:
#00a3fa;
height: 31px;
width: 146px;
}
.MainMenu_MenuArrow {
display: none;
}
.MainMenu_RootMenuArrow {
display: none;
}
I thank you in advance.
|