Forums

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

Home Forums CSS Menubar is not working after changing logo position Re: Menubar is not working after changing logo position

#127928
Merri
Participant

Seems like you’ve done something with it, now the page is very broken.

Anyway, biggest problem probably happened because there is div.container within #logo and div.container has 960px width, so when you (I guess) set `position: absolute;` to #logo it also made #logo to jump on top of the #mainmenu.

Easiest solution would’ve been to give #mainmenu a `position: relative;` or remove container class from the div (although that may give some other issues).