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