Site logo

Archived topic

Is it possible to stretch the featured image on mobile view?

3 replies · Started by Andy on October 11, 2020

Viewing posts 1–4 of 4

Hi there,

I'd like to test out the featured image of my blog post without any padding on the left and right sides.

Here's a screenshot, is this possible? https://imgur.com/a/IlyG7D9

Thank you,

Hi there,

you can uncheck the Display padding around images option in Customizer > Layout > Blog --> Featured Images >> Posts. This will apply to Desktop and Mobile.

For Mobile only instead of that option add this CSS:

@media(max-width: 768px) {
    .page-header-image-single {
        margin-left: -25px;
        width: 100vw;
    }
}

Thank you David, perfect!

You're welcome

This archived topic is closed to new replies.