Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Vertical menu - submenu partially hidden

Home Forums Older releases 0.9.x Vertical menu - submenu partially hidden Reply To: Vertical menu - submenu partially hidden

#2324
admin
Keymaster

Yep, your #container DIV has overflow: hidden applied and that’s what cuts the top part of the sub menus. Just edit this rule and remove the declaration:

#container {
  max-width: 1140px;
  margin: 0 auto;
  margin-top: 15px;
  padding: 0px;
  background-color: #fff;  
  overflow: hidden;
}

in:

http://temp07.cww-temp.nl/sysfiles/skins/Rsp-MP04/css/style.css

I guess it has been added for clearing any floats inside but you already have a clearer div inside it anyway <div class="clear"></div> (and you could use other ways for clearing floats, too, if needed) so removing the overflow declaration shouldn’t hurt anything.

Cheers!