Posted by fokkewolf on January 6, 2013 at 12:52pm
What I want to do is to position the superfish menu under the logo, where the original bartik built-in menu was located (Like this).
I've assigned superfish 1 block to header region, but it's gets placed in the top-right corner and I can't figure out how to move it anywhere.
Googled a lot, but failed to find any solution that worked. Any help? Getting a step-by-step instruction would be a dream come true :)
I'm using Drupal 7, Bartik 7, Superfish 1.8.
Comments
Also
Installed the Danland theme, neither in Danland, nor in Danblog the drop-down built-in menu doesn't work.
Partially solved
Okay, so I installed "Bartik Dropdown" theme from here, and it made the menu go down to the bottom of the header.
Good enough.
.region-header {clear: both; float: none; margin: 0;} /* move menu back into block flow */.region-header .block-menu {font-size: 1em; width: auto; margin: 0; border: 0;} /* move menu back into block flow. The 1em is to reset the region-header block 0.857em */
/* another reset */
.region-header .block-menu li a {border-bottom: 0;}
The piece of custom CSS from theme's folder, seems that the first string does the main trick.
Okay. Guess I can move it around by changing the value for "float". That will do for the time being. Meanwhile, is there any other solution? Also, how do I make it's width 100%?