Is it possible to hide BG Upper layer

Is it possible to hide Background Upper layer on mobile?

Thank you!

Hello Konstantin,

You can only hide the background upper on smaller screens with custom css. Please edit your page back in Cornerstone and insert the following custom css in the settings tab, Settings > Custom CSS

@media(max-width: 767px){
    [class*="x-bg-layer-upper"] {
        display: none;
    }
}

We would loved to know if this has work for you. Thank you.

1 Like

Thank you very much! :sunny:

You’re welcome!
It’s good to know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.