HELP Logo needs to be bigger!!!!

  • Unknown's avatar

    I want the logo to be large but it won’t allow me to change the size of it can someone give code or something. Please!!!

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

  • Hi @marketingcoofwomen, I want to say this theme will soon have an option to modify the logo size (and header) using blocks. Right now those preparations are making it a bit trickier to resize using CSS, and most options we could suggest are outside the scope of the CSS support we could offer.

    You could, though:

    – emphasize the logo by hiding the larger site title:

    .site-title {
        display: none;
    }

    OR, remove the logo and site title for now, and use the logo as a background image:

    header#masthead {
        background-image: url(https://marketingcoofwomen.files.wordpress.com/2020/10/cropped-270px-square-tl-logo-2.png);
        background-repeat: no-repeat;
        background-position: center top;
    }
    
    .site-title { visibility: hidden;
    }

    And then just hold tight while the ability to edit the header is added to WordPress. Or, you can work with a designer through UpWork.com to develop something custom. But for what it’s worth, I think simply hiding the title, and maybe aligning your logo so it’s near the bottom of the square image, would probably be enough for now.

    Hoping it helps.

  • The topic ‘HELP Logo needs to be bigger!!!!’ is closed to new replies.