• Resolved aprandres

    (@aprandres)


    http://www.madtesla.com/
    Is there a way to make the logo/banner full size? The banner I’ve uploaded is bigger than what appears on my site. Yes, I’ve unchecked the ‘force logo dimensions’ option.
    thanks in advance,
    Andres

Viewing 3 replies - 1 through 3 (of 3 total)
  • You have “span10 offset1” as class for your banner, probably ’cause you applied a snippet to change that class.
    You have something of the sort in your child-theme functions.php

    add_filter('tc_logo_text_display', 'your_logo_display');
    add_filter('tc_logo_img_display', 'your_logo_display');
    function your_logo_display($output) {
    return preg_replace('/brand span3/', 'brand span10 offset1', $output, -1);
    }

    Change it this way:

    add_filter('tc_logo_class', 'center_logo');
    function center_logo($output) {
        return str_replace('span3', 'span12', $output);
    }

    Also I suggest you to add this to your child-theme style.css to restore the ability to click on the logo.

    .navbar-wrapper.clearfix {
        clear: both;
    }

    Thread Starter aprandres

    (@aprandres)

    d4z_c0nf: It worked great, thanks!

    🙂
    Glad you solved!

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

The topic ‘full-size banner’ is closed to new replies.