You’ll need the following in your child-theme’s php:
// Move tagline under logo
// Hook the deletion on the wp_head hook, so it's executed before any html
add_action ( 'wp_head' , 'move_my_socials');
function move_my_socials() {
// Remove socials from the navbar
remove_action ( '__header' , array( TC_header_main::$instance , 'tc_tagline_display' ) , 20 );
remove_action ( '__navbar' , array( TC_header_main::$instance , 'tc_tagline_display' ) , 20 );
// Put them back under the logo
add_action ( '__after_logo' , array( TC_header_main::$instance , 'tc_tagline_display' ) , 20, 1 );
}
Checkout How to customize Customizr if you’ve never done this.