• Hello,

    I am using the theme ‘Resolution’ and I want to make the Logo appear bigger on my page. I’ve been trying to find it within the editor but I’m afraid I’ll change something and break it. Does anyone know where I should be looking exactly and which numbers I should be changing?

    Thanks for the help!

    Keith

Viewing 7 replies - 1 through 7 (of 7 total)
  • 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.

    Thread Starter keithmcg7

    (@keithmcg7)

    I don’t have the premium version unfortunately.

    Site is : https://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.

    Thread Starter keithmcg7

    (@keithmcg7)

    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="https://westillgotem.com">
        <img src="https://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="https://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.

    Thread Starter keithmcg7

    (@keithmcg7)

    Thanks for the help!

    Your welcome Keith.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Changing Logo Size – Resolution Theme’ is closed to new replies.