Can we have the link to your website?
Also, which Resolution theme are you using? If it is a premium theme, please ask support from the developer.
I don’t have the premium version unfortunately.
Site is : http://westillgotem.com/
Hi there, this CSS code –
.logo-image {width:100%;height:200px;}
it will fill up the entire top blank space of your header.
hmm that seems to have just expanded the header but the image size has stayed the same… I’ve gone through and searched for image and logo with in the css code and changed any pixels that are given as options nothing seems to fix it though.
Its because your HTML code is specifying a fixed width and height (217×70).
<div id="logo-image" class="pull-left">
<a href="http://westillgotem.com">
<img src="http://westillgotem.com/wp-content/uploads/2016/08/cropped-Logo-real-3.png" width="217" height="70" alt=" Logo">
</a>
<h1 class="site-title"><a href="http://westillgotem.com"></a></h1>
</div>
In most of these themes, you need to use their interface to upload an image and assign it to the logo image. That puts it in the MySql database as a theme option.
There is code somewhere in your theme that is forcing the header to be this 217×70 pixel height. You need to find it in the PHP file for the theme and take those width and height settings out. Then, use the CSS width 100% code suggested above to expand the logo so that it will always fit the parent container it is in.