Hello Simon T,
Hope you’re well! ??
First, Use child themes for any customisation you will make. Read more about it here: https://codex.www.ads-software.com/Child_Themes
If you want something like this: https://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: https://prntscr.com/5spxfe
Hope it helps! ??
Take care,
Calvin