Viewing 1 replies (of 1 total)
  • Hello Simon T,

    Hope you’re well! 🙂

    First, Use child themes for any customisation you will make. Read more about it here: http://codex.wordpress.org/Child_Themes

    If you want something like this: http://prntscr.com/5spvea follow these steps ( I assume you create the child theme already) :

    1.) Copy the code you will find here: https://gist.github.com/anonymous/1b0ea4a8d57d91e6598a and save it as footer.php inside your child theme’s folder – I insert the code to display the menu.
    2.) Put this code inside your child theme’s functions.php ( if you don’t have this file yet then you should create it ).

    register_nav_menus( array(
    	'footer_menu' => 'Cockapoo Footer Menu',
    ) );

    3.) Add this code to your child theme’s style.css

    .cockapoo-footer-menu-container {
    	padding: 5% 10%;
    }
    
    .cockapoo-footer-menu li {
    	float: left;
    	list-style: none;
    	padding-right:  20px
    }
    
    .cockapoo-footer-menu li a {
    	font-size: 16px;
    }

    4.) Navigate to Appearance >> Menus You will find new menu location like this one: http://prntscr.com/5spxfe

    Hope it helps! 🙂

    Take care,
    Calvin

Viewing 1 replies (of 1 total)
  • The topic ‘footer – is there a footer to place a menu?’ is closed to new replies.