• Hi ive manage to add a second menu to the header of my wp site here http://uksurfawards.co.uk/

    but i cant work out how to style it so it displays horizontal across the header…..? here is my header.php

    And the syle.css below

    </div>
    
    <?php
        if (function_exists('wp_nav_menu') && get_option('gpp_wp_menu')=='true' ) {
            wp_nav_menu( 'sort_column=menu_order&menu_class=sf-menu&theme_location=main-menu' );
        } else {
            include (TEMPLATEPATH . '/nav.php');
        }
    ?><div class="clear"></div>
    <div><?php wp_nav_menu( 'sort_column=menu_order&menu_menu_class=second-menu&theme_location=second-menu' ); ?></div>
    <div class="clear"></div>
    </div>
    .second-menu { display:inline;
    padding:50px;
    float:right
    }

The topic ‘second nav menu style….?’ is closed to new replies.