Hi @atlas_gondal and @tsuzan1
Thanks for getting back to me so quickly.
I have fixed the problem by putting this code in functions.php
function register_my_menus() {
register_nav_menus(
array(
'footer-menu' => __( 'Footer Menu' ),
'social-menu' => __( 'Social Menu' )
)
);
}
add_action( 'init', 'register_my_menus' );
Followed by this code in footer.php
<div class="copyright">
<div class="container">
<ul>
<div class="pull-left" style="height:30px; width:300px; background-color:#202020;">
<?php echo esc_attr( get_theme_mod( 'dt_copyright_text', DT_COPYRIGHT_TEXT ) ); ?>
</div>
<div class="pull-right" style="height:30px; width:300px; background-color:#202020;">
<?wp_nav_menu( array( 'theme_location' => 'footer-menu', 'container_class' => 'footer_menu_class' ) ); ?>
</div>
</div>
</div>
</ul>
</footer>
Do you have any idea how to get my footer-menu to align with the Copyright text in the same row and within the container?
The Directory Starter themes original footer links do not work even after adjusting it in Appearance > Menus and Customiser.