Menubar › Child items on menu don't pop up
-
AuthorPost
-
Diego
GuestHey!
I am looking for help because, as the title express, when i try to do a sub menu, it shows the full menu but not the childs… i have been stuck in a while with this, plz help :C
screenshots:
http://i.imgur.com/viWLyJh.png
http://i.imgur.com/IH07TX5.pngCode:
<div id=”secondary”>
<?php
$description = get_bloginfo( ‘description’, ‘display’ );
if ( ! empty ( $description ) ) :
?>
<h2 class=”site-description”><?php echo esc_html( $description ); ?></h2>
<?php endif; ?><nav class=”navigation site-navigation secondary-navigation”>
<?php do_action(‘wp_menubar’,’Aiuc’); ?>
</nav><?php if ( has_nav_menu( ‘secondary’ ) ) : ?>
<nav role=”navigation” class=”navigation site-navigation secondary-navigation”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘secondary’ ) ); ?>
</nav>
<?php endif; ?><?php if ( is_active_sidebar( ‘sidebar-1’ ) ) : ?>
<div id=”primary-sidebar” class=”primary-sidebar widget-area” role=”complementary”>
<?php dynamic_sidebar( ‘sidebar-1’ ); ?>
</div><!– #primary-sidebar –>
<?php endif; ?>
</div><!– #secondary –>andrea
Plugin AuthorHi Diego,
Which Menubar template are you using?
Diego
GuestHey Andrea,
I fixed this yesterday and the problem was exactly that, i was using “Basic_46 without CSS”, i changed it to “Suckerfish_45 without CSS” and it worked!
Thanks for the answer anyway, i hope that this question helps someone else.
andrea
Plugin AuthorGreat, I’m glad you made it work!
Luc
GuestBut with the “Suckerfish_45 without CSS” you have a vertical menu and I want a horizontal menu and the “Basic_46 without CSS” do not show the childs for me either.
What’s the reason and how to resolve this?
andrea
Plugin AuthorHi Luc,
Only the Suckerfish and Superfish menu templates can display child menu items.
If you like Suckerfish, you can use one of the available styles, for instance “Suckerfish_45 with sf-blue.css”, that display a horizontal menu.
-
AuthorPost