Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dawnmariehoward

    (@dawnmariehoward)

    Please?

    Hi,
    Add this code to your child theme’s functions.php

    add_action ('__before_body' , 'move_social_block');
    function move_social_block() {
    
        remove_action  ( '__navbar' , array( TC_header_main::$instance , 'tc_social_in_header' ));
    	add_action( '__navbar',array( TC_header_main::$instance , 'tc_social_in_header' ),30);
    }
    add_filter('tc_tagline_class', 'my_span');
    function my_span($content){
      return 'span12';
    }

    and this to your child theme’s style.css

    .row-fluid .span12.site-description {
        width: 100%;
        padding-top: 10px;
    	text-align: center;
    }

    You can center the logo/title from the Customizer> Header>Design and Layout

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Header – tagline & search’ is closed to new replies.