Adding a second menu


First Prev Page 2 of 2   
Author Message
Natalie

Posted: 4/12/2013
Quote message 

My website is www.getnatalie.com

I just got the theme up and will start working on the content. Please check it out and feel free to offer tips and advice to make it look great. It's for my new graphic design business. (I know it's embarrassing)

My email is natalie@getnatalie.com

AGAIN THANKS EVERYONE ABLAND, ZACK AND NICK
 
Natalie

Posted: 4/12/2013
Quote message 

My website is www.getnatalie.com

I just got the theme up and will start working on the content. Please check it out and feel free to offer tips and advice to make it look great. It's for my new graphic design business. (I know it's embarrassing)

My email is natalie@getnatalie.com

AGAIN THANKS EVERYONE ABLAND, ZACK AND NICK
 
Natalie

Posted: 4/12/2013
Quote message 

My website is www.getnatalie.com

I just got the theme up and will start working on the content. Please check it out and feel free to offer tips and advice to make it look great. It's for my new graphic design business. (I know it's embarrassing)

My email is natalie@getnatalie.com

AGAIN THANKS EVERYONE ABLAND, ZACK AND NICK
 
Natalie

Posted: 4/12/2013
Quote message 

My website is www.getnatalie.com

I just got the theme up and will start working on the content. Please check it out and feel free to offer tips and advice to make it look great. It's for my new graphic design business. (I know it's embarrassing)

My email is natalie@getnatalie.com

AGAIN THANKS EVERYONE ABLAND, ZACK AND NICK
 
carolsoo

Posted: 5/14/2013
Quote message 

Simple question: I am trying to add widgets to my RIGHT vertical menu and it is only giving me the option in the lleft menu, HELP please!

Thanks in advance.
 
carolsoo

Posted: 5/14/2013
Quote message 

Never mind! Can't believe I didn't scroll down enough to see the options for the other side! :(
 
Diane

Posted: 6/25/2013
Quote message 

I am having some issues with adding a secondary menu with using artisteer 4. I have followed this tutorial = http://reflectingthedesigner.com/wordpress/2011/01/06/creating-a-secondary-horizontal-menu-space/ and in the past it has worked really well, but now the coding has been changed in version 4 i am unable to find the code needed to change the header nav. this code is no longer there in the header.php file. I tried changing the sidebar-header.php but that just messed up the sidebar.

Does anyone know where the code has gone or what i have to do to show the second nav bar. Thanks
 
Lee

Posted: 10/24/2013
Quote message 


Step 1. Go to functions.php
Step 2. Copy and replace this code
register_nav_menus(array('primary-menu' => __( 'Primary Navigation', THEME_NS),
'secondary-menu'=> __( 'Secondary Navigation', THEME_NS),
'footer-menu' => __( 'Footer Navigation', THEME_NS) ));
Step 3. Go To Header.php
add this one after the art-nav
<nav class="art-nav2">
<?php
echo theme_get_menu(array(
'source' => theme_get_option('theme_menu_source'),
'depth' => theme_get_option('theme_menu_depth'),
'menu' => 'secondary-menu',
'class' => 'art-hmenu2'
)
);
get_sidebar('nav');
?>
</nav>

4. Go to artisteer to create a new menu

5. Open the Style in both themes

6 Copy these css: art-nav, art-hmenu in new theme and rename to art-nav2, art-hmenu2 and copy to current theme. the part before this line abt 925 line/* need only for content layout in post content */

 
John Zeiger

Posted: 9/13/2014
Quote message 

To add a second horizontal menu, in Appearance > Menu, I created a new menu called Left and added the following code to a widget:

<?php wp_nav_menu( array(  'menu' => 'left',  'container_class' => 'art-nav desktop-nav',  'items_wrap' => '<ul class="art-hmenu">%3$s</ul>')  ); ?>

 
First Prev Page 2 of 2