Hello
I am unable to get the horizontal Housemenu to display in Firefox, any suggestions.
I am using Dnn 4.3.5, Housemenu v 1.4
This is my housemenu setting:
<dnn:HOUSEMENU runat="server" id="dnnHOUSEMENU" Scope="-1" IsRecursive="True" Orientation="H" ShowAdmin="True" Mode="D" CssElementId="HouseMenuNav" /></div>
#HouseMenuNav { /* menu wrapper div */
padding: 0;
border-top: solid 1px #000;
border-bottom: solid 1px #000;
list-style-type: none;
white-space: nowrap;
height: 30px;
width:100%;
background-color: #7488AF;
/*_position: absolute; */
margin: 5px;
}
#HouseMenuNav ul { /* all submenu lists */
padding: 0;
border: 0;
margin: 0;
list-style-type: none;
line-height: 12pt;
white-space: nowrap;
background-color:#B5C6E4;
z-index: 99999;}
#HouseMenuNav a { /* all links within the menu wrapper */
display: block;
font: #fff Verdana, Arial, Helvetica, Sans-Serif 85% bold;
text-decoration : none;
text-transform: uppercase;
letter-spacing: 1px;
background-color:#7488AF;
padding: 5px;
width: auto;
height: 25px;
/* hack for MacIE5 to ignore, while other browsers use \*/
_width: 100%;
height: 12px;
_height: 100%;
/* end hack */
margin: 0;
border: 0;}
#HouseMenuNav li { /* all list items */
position: relative;
display: inline;
list-style-type: none;
float: left;
margin: 0;
border: 0;
padding: 0;
width: 144px;
height: 25px;
/* hack for MacIE5 to ignore, while other browsers use \*/
width: auto;
_width: 1px;
/* end hack */}
#HouseMenuNav li a:hover {
margin: 0;
border: 0;
padding: 5px;
color: #000;
background-color:#B5C6E4 ; }
#HouseMenuNav li ul { /* second-level lists */
position: absolute; width: 144px; /* width of submenu, must be set so third-level list can get shifted over properly */ left: -9999px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
border: solid 1px #333;
/* border-top: none; */
padding: 0;
margin: -2px 0 0 0;
/* hack for MacIE5 to ignore, while other browsers use \*/
margin: 0 0 0 0;
/* end hack */
white-space: nowrap;
z-index: 88888;
line-height: 12px;}
#HouseMenuNav li ul ul { /* third-and-above-level lists */
margin: -31px 0 0 144px;
_margin: -30px 0 0 144px;
border: solid 1px #333;
white-space: nowrap;
line-height: 12px;}
#HouseMenuNav li:hover ul ul, #HouseMenuNav li:hover ul ul ul,
#HouseMenuNav li.sfhover ul ul, #HouseMenuNav li.sfhover ul ul ul { left: -9999px;}
#HouseMenuNav li:hover ul, #HouseMenuNav li li:hover ul, #HouseMenuNav li li li:hover ul, #HouseMenuNav li.sfhover ul, #HouseMenuNav li li.sfhover ul, #HouseMenuNav li li li.sfhover ul { /* lists nested under hovered list items */ left: auto;}
#HouseMenuNav li li { /* all items under the top level */
list-style-type: none;
width: 148px;
/* hack for MacIE5 to ignore, while other browsers use \*/
width: 134px;
_width: 144px;
/* end hack */}
#HouseMenuNav li li a { /* all item links under the top level */
width: 148px;
/* hack for MacIE5 to ignore, while other browsers use \*/
width: 134px;
_width: 144px;
/* end hack */}
#HouseMenuNav iframe { position: absolute;
left: 0; top: 0; z-index: 0;
display: block;}
/* Applied to the parent item, if displayed, in either vertical or horizontal
orientation. Must follow other styles. */
#HouseMenuNav #houseMenuParentItem a
{ /* all links under the parent item (li) */
color: #0D1D43 ; background-color: #B5C6E4 ; text-decoration: none;}
#HouseMenuNav a#houseMenuParentLink{ /* parent link itself */
color: #0D1D43 ; background-color: #B5C6E4 ; text-decoration: none;}
#HouseMenuNav a#houseMenuCurrentLink{ /* current link itself */ margin: 0; border: 0; padding: 5px; color: #eee; background-color:#7488AF; text-decoration: none;}
.ArrowPointer{ cursor: default;}
Thanks
Lynn