Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter GarryB

    (@garryb)

    Solved I adjusted the image settings: Under Global Settings -> Images Settings

    Thread Starter GarryB

    (@garryb)

    Resolved….used functions code

    // center the logo by switching TBs classes on brand div:
    add_filter('tc_logo_title_display', 'custom_center_brand');
    function custom_center_brand($output) {
    return preg_replace('/brand span3/', 'brand span10 offset1', $output);
    }
    
    // prevent the output of tc_social_in_header:
    add_filter('tc_social_in_header', 'prevent_social_in_header');
    function prevent_social_in_header($output) {
    return;
    }
    
    // remove span9 from navbar-wrapper:
    add_filter('tc_navbar_display', 'remove_span9_navbar_display');
    function remove_span9_navbar_display($output) {
    return preg_replace('/navbar-wrapper clearfix span9/', 'navbar-wrapper clearfix', $output);
    }
    Thread Starter GarryB

    (@garryb)

    Thanks rdellconsulting! I should have tried that first. The culprit was NextGEN Gallery by Photocrati. The issue is solved!

    Thanks again

    Thread Starter GarryB

    (@garryb)

    Thanx txpost. I will look into that.

    rdellconsulting I have not made any customizations to the theme other that making a Child Theme.
    Should I take the footer.php from the main theme and replace the footer.php n the child theme?
    Would that work for me? What are some options if I don’t feel comfortable doing as txpost suggested?

Viewing 4 replies - 1 through 4 (of 4 total)