I do not use the Second menu in my Newscast Theme Skin 1. Where in my css pages do I reduce the height of the space left where the second menu normally appears?
Thanks
I do not use the Second menu in my Newscast Theme Skin 1. Where in my css pages do I reduce the height of the space left where the second menu normally appears?
Thanks
Hey,
have a look at this post: http://www.kriesi.at/support/topic/menu-problems-help#post-24840
Excellent. Thank you Dude. Yet again 1st class support
Glad that I could help you :)
Is there a way to have a dropdown menu from the second menu in Newscast? If not, is there a way to delete the second menu entirely?
Thanks!
You can delete the first menu. Go to header.php and change following code:
<!-- Navigation for Pages starts here -->
<?php
wp_nav_menu( array( 'menu' => 'First', 'menu_class' => 'nav', 'echo' => true,
'fallback_cb' => '', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '',
'depth' => 0, 'context' => 'frontend'));
to:
<!-- Navigation for Pages starts here -->
<?php
wp_nav_menu( array( 'menu' => 'First', 'menu_class' => 'nav', 'echo' => false,
'fallback_cb' => '', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '',
'depth' => 0, 'context' => 'frontend'));I actually want to keep the first menu since I can use dropdowns with it and get rid of the second one. Is that not an option?
You must log in to post.