• I’d like my logo to scale responsively. Currently the logo gets BIGGER when it goes to mobile view. is there some code that I can put around the logo to make it scale? FYI my logo is an .svg but it did the same even when it was a png

    see here.
    https://www.shanehartley.com/wp

Viewing 1 replies (of 1 total)
  • Hi there!

    Website looks great ??

    Is this the kind of look your going for: Screenshot ?

    If so, try:

    @media screen and (max-width:1000px) {
    
    .blog-logo,
    .blog-logo img {
    width: 50%;
    }
    
    }

    You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.

    I hope that helps!

    Luke the Daft Duke

Viewing 1 replies (of 1 total)
  • The topic ‘Responsive scaling of logo’ is closed to new replies.