Submenu elements shows it in a incorrect position (top
of main window), no under tabs. I change the default
css (tabs.css) entry:
#menuList li.selected ul.submenu {
display: inline;
left: 10px;
position: absolute;
top: 35px;
}
by this other:
#menuList li.selected ul.submenu {
display: block;
position: absolute;
margin:35px 0;
}
and now works fine! :)
Description
Copied from SF http://sourceforge.net/tracker/index.php?func=detail&aid=1010117&group_id=48726&atid=453974:
Submenu elements shows it in a incorrect position (top
of main window), no under tabs. I change the default
css (tabs.css) entry:
#menuList li.selected ul.submenu {
display: inline;
left: 10px;
position: absolute;
top: 35px;
}
by this other:
#menuList li.selected ul.submenu {
display: block;
position: absolute;
margin:35px 0;
}
and now works fine! :)
Matt Raible added a comment - 16/Oct/06 05:46 PM The following seems to work better, but I'm somewhat unsure of what problem this solves. do you have a before and after screenshot?
.menuList li.selected ul.submenu {
display: block;
position: absolute;
margin: 25px 0px 0px -10px;
}
Matt Raible added a comment - 17/Oct/06 02:38 PM Cool - thanks for the detailed bug report. I've verified that the CSS change I noted above works with the "solution". Thanks again!
Harakiri added a comment - 02/Nov/06 05:54 AM Well guys, you actually broke the Menu for Internet Explorer - the Submenu will be waay on the left side now - the correct fix is :
.menuList li.selected ul.submenu {
display: inline;
left: 10px;
position: absolute;
top: 60px;
}
where top: 60px; is some value you need to ajust according to the size of the header text you put above
.menuList li.selected ul.submenu {
display: block;
position: absolute;
margin: 25px 0px 0px -10px;
}