Reply To: 767 width center the logo

Homepage Community Forums Epik Theme Support 767 width center the logo Reply To: 767 width center the logo

#14066
EliteGD
Customer

    So for anyone who wants to know or runs into the problem
    First as Wes pointed out in another post go to your functions.php

    //* Add support for custom header
    add_theme_support( ‘custom-header’, array(
    ‘width’ => 145,
    ‘height’ => 113,
    ‘header-selector’ => ‘.site-title a’,
    ‘header-text’ => false,
    ) );

    Change the width and height to match your exact logo size

    In your style sheet inside your media query
    @media only screen and (max-width: 767px)

    add

    .custom-header .site-title a {
    background-position: center !important;
    }

    It was still a little tight on spacing so I added a bit of margin

    .header-image .site-title a {
    float: left;
    min-height: 113px;
    margin: 10px;
    width: 100%;
    }