Okay done!
I put the following code above the footer:
<?php if ( has_nav_menu( 'social' ) ) : ?>
<ul class="social-menu">
<?php
wp_nav_menu( array(
'theme_location' => 'social',
'container' => '',
'container_class' => 'menu-social',
'items_wrap' => '%3$s',
'menu_id' => 'menu-social-items',
'menu_class' => 'menu-items',
'depth' => 1,
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
'fallback_cb' => '',
) );
?>
</ul><!-- .social-menu -->
<?php endif; ?>