• Afternooner! I’m trying to set up the horizontal menus on my new blog. I’m on the help page
    Horizontal Menus

    It says I create this within the HTML List feature, but I can’t find that feature to get started on my menu.

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s actually the css that designates a menu list to display horizontally as is described in that help page

    #navmenu li {display: inline; }

    You have to find the menu in your template header.php (usually) file and note the correct id or class name, then find the corresponding css for that name and add the ” display: inline; ” declaration in the li styles.

    Or find a template that comes with menu already laid out horizontally.

    Just use wp_list_pages, wp_list_categories or wp_get_archives “as is”. They all output HTML lists by default.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Creating Horizontal Menus’ is closed to new replies.