• I’ve got the latest WordPress running, and there doesn’t seem to be an obvious way to resize the custom logo in my header, though it’s plenty big enough standing on it’s own. I need to make it larger. Thanks in advance!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The method you use to resize your website’s logo usually depends on the theme you’re using. There’s usually an option for this under Appearance -> Customize. If your theme does not supply an option to resize your header image, you should be able to do so with CSS in a child theme or by using a custom CSS plugin such as Simple Custom CSS.

    Thread Starter BytePhoria

    (@bytephoria)

    Eric,

    Thanks for your feedback! So I’m a super-duper newb, and while I installed Simple Custom CSS, now I have no idea what to do with it.

    Simple Custom CSS allows you to modify your theme by using CSS code to change your site’s fonts, colors, sizes, layouts, etc.

    What’s your site’s URL? Once I see it, I’ll see if I can write some CSS code to help you resize your logo for you. Also, what theme are you using?

    Thread Starter BytePhoria

    (@bytephoria)

    Eric,

    Thank you very much for your time. My site is bytephoria.com and I’m using MyThemeShop’s SociallyViral theme.

    You can use this CSS code to adjust your logo’s size while keeping the aspect ratio (you only need to adjust the width value):

    #logo img {
      width: 175px !important;
      height: auto!important;
    }

    If you want to manually set both the width and the height, you can use this code:

    #logo img {
      width: 175px !important;
      height: 75px !important;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Best way to resize custom logo?’ is closed to new replies.