Viewing 6 replies - 1 through 6 (of 6 total)
  • You can add little margin to footer items

    In your stylesheet, add this

    .footermenu ul li {
        margin-bottom: 5px;
    }
    Thread Starter mr108

    (@mr108)

    Thanks Drake,

    I added it to the custom CSS in Nirvana’s Miscellaneous Settings, but it does not work, nothing is changed in the bottom menu.

    I think you currently using Custom Menu widget on footer. While using custom menu widget on footer, no drop down menu appears, only menu in hierarchy appears.
    Have you set the menu drop down for footer menu also? While i inspect your code through browser, only li is appearing.

    If not work, please feel to ask. I will serve the best for the betterment to solve your problem.
    Thank You.

    Thread Starter mr108

    (@mr108)

    Thanks!

    I did not set up any custom menu in the footer. I selected the main menu both for Primary Navigation and Footer Navigation.

    Where do I set up the menu drop down for footer menu? – I cannot find it neither in Appearance>Menus nor in the Nirvana Settings.
    I must have missed this…

    Hello @mr108

    You can alter the theme-setup.php file
    Look where it says:

    // FOOTER MENU
    function nirvana_footer_menu() {
    	if ( has_nav_menu( 'footer' ) )
    		wp_nav_menu( array( 'container' => 'nav', 'container_class' => 'footermenu', 'theme_location' => 'footer', 'depth' =>1 ) );
    }
    add_action ('cryout_footer_hook','nirvana_footer_menu' , 10);

    And replace the footer depth=>1 for ‘footer’, ‘depth’ =>2

    Now your sub-menus has to show

    I had to alter the nirvana theme even when im using a child theme, becouse the Includes folder in nirvana child are not overwrtting the main theme

    Hope it works, for me is working just fine

    Thread Starter mr108

    (@mr108)

    Thanks Diana,

    I’m one step further – it works, but not yet exactly what I wanted it to be. See the bottom menu now:
    https://meditationyoga.in/

    What I’d like to get now is a drop down or rather drop UP of the submenu in the footer. Look at the ‘Yoga and TM’ in footer and it would unfold up. Is that possible?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Bottom Menu does not show submenu items’ is closed to new replies.