I recently added a menu to our website
The menu is now show in the top header (blue bar)
and beneath the top header.
How do I remove the menu beneath the top menu.
Here's our web site
I recently added a menu to our website
The menu is now show in the top header (blue bar)
and beneath the top header.
How do I remove the menu beneath the top menu.
Here's our web site
Hey,
in header.php delete following code:
<div class="catnav_wrapper">
<!-- Navigation for Categories starts here -->
<?php
wp_nav_menu( array( 'menu' => 'Second', 'menu_class' => 'catnav', 'echo' => true,
'fallback_cb' => '', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '',
'depth' => 0, 'context' => 'frontend', 'walker' => new description_walker() ));
/* pre wp 3
if(is_object($k_option['custom']['kriesi_menu_cats']))
$k_option['custom']['kriesi_menu_cats']->display('Menu Manager Categories','show_main_description');
*/
?>
<!-- end catnav_wrapper: -->
</div>
Maybe some background image adjustments are required (I couldn't visit your website so I'm not sure how the header background looks like).
You must log in to post.