Site logo

Archived topic

How can i make image wider on mobile devices?

3 replies · Started by Daniel on October 11, 2019

Viewing posts 1–4 of 4

How can i remove the white space or make image wider on mobile & table devices? See image: https://prnt.sc/pi6ubn

Hi there,

try adding this CSS:

@media (max-width: 768px) {
    .post-image {
        margin-left: -30px !important;
        margin-right: -30px !important;
    }

    .post-image img {
        width: 100%;
    }
}

Thanks it worked!

You're welcome

This archived topic is closed to new replies.