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;
}
Code: Select all
#primary-nav li.firstlevel a {
display:block;
line-height:42px;
vertical-align:middle;
padding-left:10px;
padding-right:10px;
}