View Single Post
  #6 (permalink)  
Old 01-16-2009, 01:26 PM
zenfort's Avatar
zenfort zenfort is offline
WebProWorld New Member
 
Join Date: Mar 2004
Location: New England
Posts: 19
zenfort RepRank 0
Default Re: IE 6 navigation disappearing

I found that all other browsers set a relative width to a box model. IE6 needed the width set in the Spry assets CSS.
Other browsers were fine with this:
HTML Code:
/* The outermost container of the Menu Bar */
ul.MenuBarVertical
{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
}
IE 6 Windows needed this:
HTML Code:
/* The outermost container of the Menu Bar */
ul.MenuBarVertical
{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 13em;
}
Thanks zenfort
__________________
Arts and Entertainment in New England xenarts on the web since 1994.
Reply With Quote