[SOLVED] Bad menu displaying in IE (7)

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
Milhaus

[SOLVED] Bad menu displaying in IE (7)

Post by Milhaus »

Hi all,
I have problem in my menu navigation (based on CMSMS Css menu). In Firefox the dropdowns are displaying right down to the first level, but in IE 7 they seem to be floated to right (which they aren't). You can see problem on my test page (just hover your cursor over "Test vzhledu").

Thanks in advance for help,

Milhaus

Edit:

The problem was finally solved by changing:

Code: Select all

#primary-nav li.firstlevel a {
display:block;
height:42px;
line-height:42px;
vertical-align:middle;
padding-left:10px;
padding-right:10px;
}
to:

Code: Select all

#primary-nav li.firstlevel a {
display:block;
line-height:42px;
vertical-align:middle;
padding-left:10px;
padding-right:10px;
}
Last edited by Milhaus on Tue Oct 23, 2007 8:49 pm, edited 1 time in total.
Locked

Return to “Layout and Design (CSS & HTML)”