Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Spry Menu drop down display width problem in IE only Re: Spry Menu drop down display width problem in IE only

#137687

In Chrome the dropdown is as wide as the first level. This might become an issue later on, I would set a width to the ul.children or ul.children li.

I think the problem you have in IE is related to this.
Try doing this:


ul.children li {
width: 200px;
float:none; /* Or delete it */
display: block; /* To avoid the list items to line up horizontal */
}

Hope it help!