Currently in Bluebreeze, the nice menu module displays expanded all the time. When switched to vertical menu, sublinks only display on hover. Please help.

CommentFileSizeAuthor
#4 nice_menus.txt5.29 KBboreg

Comments

boreg’s picture

Hi,
do you still want to solve the issue? I'm now trying to fix similar issue - cooperation admin_menu with bluebreeze theme because the admin_menu module looks greater for me.

I only find out that problem is somewhere near line 340 in style.css file of bluebreeze template and i don't have time to work out. Try to add these comments - it's now upset, but not expanded all time :))

/*
#header-region * {
  display: inline;
  vertical-align: bottom;
}

#header-region h2, #header-region h3, #header-region div, #header-region ul, #header-region li {
  display: inline;
  padding-right: .5em;
  line-height: 20px;
  font-size: 10px;
}
*/

btw: sorry for my English :)

boreg’s picture

If you're still interested in it, i can try to fix it, but pls respond if it's still current.

boreg’s picture

Ok, i have some fast solution :)

Remove this div from the bluebreeze page.tpl file <div id="header-region"> (or comment it) and add margin: 0; to ul.nice-menu-down li {} .

Finall code - nice_menus.css:

ul.nice-menu-down li {
  border-top: 1px solid #999; 
  margin: 0;
}

Finall code - page.tpl.php:

<?php if ($header): ?>
        <!--<div id="header-region">-->
          <?php print $header ?>
        <!--</div>-->
      <?php endif; ?>
}

Is it sufficient for you?

boreg’s picture

StatusFileSize
new5.29 KB

There is my stylesheet in the attachment if you want. It's little bit more similar (colourity) to bluebreeze theme than the default one.

Notice: It's adapted (resp. tested) only for the dropdown variant.

pcorbett’s picture

Yes, that quick fix works, but the real issue is with the display: inline; declaration in the header-region. If you need header-region, try removing the display: inline from all header-region classes/ids.

add1sun’s picture

Status: Active » Fixed

theming issue, not nice menus. seems resolved and OP has not responded.

killes@www.drop.org’s picture

Status: Fixed » Closed (fixed)