Site logo

Archived topic

Logo small on mobile view

1 reply · Started by johnzoro on July 31, 2022

Viewing posts 1–2 of 2

i can't seem to change the size of the logo on my website when it's on mobile view?

I would like to make it bigger as it's very small

Hi Johnzoro,

You have this code in Customize > Additional CSS:

@media (max-width: 768px) {
    .site-header .site-logo:not(.sticky-logo) {
        margin-left: 20px;
        margin-bottom: 10px;
    }
    .site-logo:not(.sticky-logo) img {
        max-width: 100px;
    }
}

The max-width: 100px rule is limiting the size of the logo.

Try increasing its value.

This archived topic is closed to new replies.