• Resolved webjunk

    (@webjunk)


    Creating a new theme which has its own built-in menus and the new 3.0 Menu system. Its own menus work great horizontal. When I use the New 3.0 Custom Menus it only appears vertical no matter what I do.
    You can view the website and how custom menus are displayed wrong at:
    https://webjunkdemo.com/gym/

    You can see the (working) built-in menu at:
    https://webjunkdemo.com/cms/

    You can view the CSS code that should display horizontal at:
    https://wordpress.pastebin.ca/1907832

    This is driving me crazy. Have tried many things including moving the menu function (webjunk_nav) around in header.php. Twentyten and other themes can display the menu horizontal but not mine!
    Here is my function for the menu:
    function webjunk_nav() {
    if ( function_exists( ‘wp_nav_menu’ ) )
    wp_nav_menu( ‘menu=main_nav&container_class=menu-header’ );
    else
    webjunk_nav_fallback();
    }

    Thanks!!
    Paul

Viewing 2 replies - 1 through 2 (of 2 total)
  • Dude, really?

    style.css, line 1027:

    ul.menu li {
    background:url("images/div-h.png") repeat-x scroll left bottom transparent;
    display:block;
    padding:0 0 3px;
    width:100%;
    }

    Lose the width property!

    Thread Starter webjunk

    (@webjunk)

    Thanks. That section is really for my sidebar but should have found it. Now need to make the rest of the Custom menu look like the built-n menu.
    Thanks much!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Horizontal trouble w/ New 3.0 Custom Menus’ is closed to new replies.