• Hi. I would like to put the main menu at the bottom of each page or in the footer. I have tried this, but only get an icon for each page link, rather than each page title (as in the main menu in the header.

    Can anyone help please?

    Cheers, Rob

    • This topic was modified 6 years, 3 months ago by robnewey.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello there Rob,

    I was just visiting this place saw you’re in trouble so thought maybe I could give you some pointers.
    I think you can get this done by simple pasting this code in your footer.php file

    <?php wp_nav_menu( array(
      'theme_location' => 'main-menu',
      'title_li' => '',
      'depth' => 4,
      'fallback_cb' => 'wp_page_menu',
      )); ?>
    Thread Starter robnewey

    (@robnewey)

    That’s spot on @lushkant – thanks!

    Do you know how to change it do the same font as the main menu?

    You need to set the font styles for the css classes associated with this menu.

    such as in your css stylesheet

     .menu-main-menu-container ul li {
      font-family: "Raleway";
      font-style: normal;
      font-weight: 600;
    }
    
    Thread Starter robnewey

    (@robnewey)

    Thanks – I’ll check that out

    Thread Starter robnewey

    (@robnewey)

    No – haven’t been able to get that to work. Think I don’t really know where to place your suggested html

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘givingpress lite footer menu’ is closed to new replies.