Posted by nouniss on November 26, 2011 at 1:19am
Hello,
I'm new to use drupal .. I saw some websites working under omega theme html5. So, in my subtheme, I have a trouble with creating menus , I wanted them to be displayed in horizontal in footer and above the header, which is not the case, are displayed in vertical .. if you have some way to solve it !
Thanks a lot ...
(excuse my English)
Theme: Omega 7.x-3.0
drupal: 7.9
Comments
thats "how to use css". You
thats "how to use css". You want to look for floating the menu "
Floating
If you do a float:left in your CSS for each list item (li) it will be horizontal. An example would be:
region-menu li {float: left;}
Try that an see if it'll work (assuming the menu is in your menu region).
Drupaler and Mobile Ninja
Cellar Door Media - Beautiful Mobile Solutions
Works
Cellar Door recommendation worked for me. Thank you for sharing!