Site logo

Archived topic

Remove/hide background image on mobile (generateblocks container)

4 replies · Started by Joseph on May 29, 2020

Viewing posts 1–5 of 5

Wondering how I can remove the background image on mobile, for a Generateblocks hero section. Possibly other sections too.

Hi there,

Add a custom class like no-mobile-background on the container that has the background image added, then add this CSS:

@media (max-width: 768px) {
    .gb-container.no-mobile-background {
        background-image: none;
    }
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Let me know if this helps :)

This was very helpful!

Glad to hear :)

That worked!

This archived topic is closed to new replies.