• Resolved myriah505

    (@myriah505)


    I need to be able to have more space for my logo in the header. Approx. 55px x 204px
    The little tiny square is not going to work for me. How can I modify this theme to allow for a longer logo?

Viewing 1 replies (of 1 total)
  • Theme Author Kellen Mace

    (@kellenmace)

    You can create a child theme with a folder named “inc” inside. Copy the inc/custom-header.php file from Business Leader and paste it inside of your child theme’s new “inc” folder you just created. On line 14 of that file, change ’55’ to ‘204’.

    Copy this style into your child theme’s style.css folder:

    @media screen and (max-width: 1024px)
    .site-header .site-branding .logo img {
    width: 110px;
    }

    That’ll allow you to have a logo image that is 55px tall and 204px wide. I hope that helps. Thanks for using my theme ??

Viewing 1 replies (of 1 total)
  • The topic ‘Header logo’ is closed to new replies.