I'm a beginner level site "designer" & I've found your site frequently in search. Anyway, I hope someone can help. (I'm totally new to posting here, so please let me know it I leave any vital info out.)
I'd like to add a secondary, category-based navbar to the SmartStart theme for Wordpress. I've added the additional wp_nav_menu in functions.php already, but can't figure out how to insert it where I'd like. (I've also already set up the menu parameters in WP's menu design area.)
The site owner would like Menu #2 to float (right) directly beneath the main navigation globally.
Should I attempt to add the menu in the header.php file, or the index file?
Here is the Header Code:
<!DOCTYPE html>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title><?php wp_title('|', true, 'right'); ?></title>
<?php if( of_get_option('ss_favicon') ): ?>
<link rel="icon" type="image/png" href="<?php echo of_get_option('ss_favicon'); ?>">
<?php endif; ?>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header id="header" class="container clearfix">
<a href="<?php echo home_url('/'); ?>" id="logo" title="<?php echo esc_attr( get_bloginfo('name', 'display') ); ?>">
<?php if( of_get_option('ss_logo') ): ?>
<img src="<?php echo of_get_option('ss_logo'); ?>" alt="<?php bloginfo('name'); ?>">
<?php else: ?>
<h1><?php bloginfo('name'); ?></h1>
<?php endif; ?>
</a>
<nav id="main-nav">
<?php echo ss_framework_main_navigation(); ?>
</nav><!-- end #main-nav -->
Here is a link to the theme demo, in case that helps: http://themeforest.net/item/smartstart-wp-responsive-html5-theme/full_screen_preview/2067920.
Any help would be appreciated!
I've added the additional wp_nav_menu in functions.php alreadycan you show us how you have added? - jogesh_piregister_nav_menus( array( 'primary_nav' => __( 'Primary Navigation', 'ss_framework' ),'secondary_nav' => __( 'Secondary Navigation', 'ss_framework' ), 'footer_nav' => __( 'Footer Navigation', 'ss_framework' ) ) ); - Oren Ishii