Viewing 2 replies - 1 through 2 (of 2 total)
  • Manuel Rocha

    (@manuelrocha88)

    You can make use of the CSS @media Rule and apply a custom css to the div.logo-box > img to get it right for different screen sizes.

    If you have a minute, please leave a review. It’s what keeps support going. Thank you 🙏 https://ww.wp.xz.cn/support/plugin/maintenance/reviews/#new-post

    Thread Starter Morbius

    (@philbenson)

    Thanks for the super quick reply Manuel! Worked like a charm! For anybody else out there who needs this code…

    @media only screen and (min-width: 200px) and (max-width: 670px) {
    div.logo-box > img {
    display: block;
    width: 100%;
    height: auto;
    }
    }

    Works great for mobile and tablet devices!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Scale mobile logo responsive size’ is closed to new replies.