First of all, you need to make the list items display inline (side by side, rather than top to bottom). To do so, add this rule to your stylesheet;
#navmenu li {display:inline;}
Thread Starter
germij
(@germij)
This is how I have it in css.
#navmenu li {display: inline; }
But the menu looks like it is style as a vertical menu
for the css of a horizontal menu, check:
http://codex.ww.wp.xz.cn/Creating_Horizontal_Menus
if you are stuck with it, post a link to your site
Thread Starter
germij
(@germij)
changing this line in style.css might help:
from this
#navmenu ul {margin: 0; padding: 0;
list-style-type: none; list-style-image: none; }
to this
#navmenu ul {margin: 5px 0; padding: 0; display:inline-block;
list-style-type: none; list-style-image: none; }
and then, in header.php, change the ‘wp_list_categories()’ to
wp_list_categories('title_li=');
to suppress the word ‘category’ in the list.
http://codex.ww.wp.xz.cn/Template_Tags/wp_list_categories