• Resolved chipster6

    (@chipster6)


    I would like to make the logo as wide as the site. Can I do this in the style css?

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi chipster6

    Yes you can make the logo as wide as the site but the problem would be your image is stretched.If thats ok then you can add this CSS:

    .site-title img {
        width: 100%;
        max-height: 200px;
    }

    Or else you have to resize the image before setting it as logo image.

    Thank You!!!

    Theme Author themehit

    (@themehit)

    Another idea, use below snippet

    .site-title img {
    	max-height: auto;
    }

    Cheers

    Pahkiller

    (@pahkiller)

    What .css and where can I find it please

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Increase Logo Image Size’ is closed to new replies.