Site logo

Archived topic

Right side padding not working in mobile

5 replies · Started by pedro paulo on February 25, 2020

Viewing posts 1–6 of 6

Folks,

The right side padding is not working in mobile mode for main page only.

Hi Leo,

When I turn off WP Rocket it works, but I would like to keep this plug in. I onw other sites runnig GP + WP Rocket without a problem.

Hi there,

add this CSS if you want to remove the lefthand padding:

@media (max-width: 767px) {
    .generate-columns-container>* {
        padding-left: 0 !important;
    }
}

OR add this CSS to put some padding on the righthand side of the container:

@media (max-width: 767px) {
    .generate-columns-container>* {
        padding-right: 20px !important;
    }
}

Hi David,

I tried I tried both options without success. Then, in WP Rocket I unchecked the "minimy CSS file" otions and it seens it got fixed. It´s working fine now.

Thanks!!

glad to hear you got it resolved.

This archived topic is closed to new replies.