I'm trying to enlarge my logo

  • Unknown's avatar

    Hello there!

    I’d like to enlarge my feature image a bit to maximize more of the space around it. Could you please give me a CSS code that may help me?

    Thanks!
    Aaron

    The blog I need help with is: (visible only to logged in users)

  • Hi @almurdoch!

    You can try using CSS to enlarge the logo, but there is a drawback.

    The theme is built to use an 80px tall version of your uploaded image (even if the original file is larger than that) so the CSS is going to basically stretch that image into a larger size. That can cause the image quality to go down a bit (the bigger you go, the worse it’ll get)

    Give this a try:

    .site-logo-link img {
        height: 100px;
        width: auto;
    }

    That’s little bit bigger – you can increase the height further if you’d like. Keep the width at auto to prevent the image losing it’s aspect ratio :)

  • The topic ‘I'm trying to enlarge my logo’ is closed to new replies.