Viewing 3 replies - 1 through 3 (of 3 total)
  • This style rule is the problem for you:

    .site-branding,
    .site-navigation {
    	padding-right: 4.661%;
    	padding-left: 4.661%;
    }

    The padding is preventing your image from covering the entire space.

    Adding the following in your child theme’s style.css should fix this issue for you.

    .site-branding {
    	padding-right: 0;
    	padding-left: 0;
    	margin-bottom: 30px;
    }

    I added the bottom margin because your image was overlapping the nav, you may want to play with that a little.

    Hope this helps

    Thread Starter leemoden

    (@leemoden)

    Brilliant! Thank you so much – very kind of you….it worked a treat!

    No problem, glad I could help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘1180 pixel header logo not stretched across screen’ is closed to new replies.