Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #690001

    Hi all,

    I am trying to hide a background image in a color section on mobile devices.
    I have tried using the following code in the Quick CSS section:

    @media only screen and (max-width: 768px) {
    div#maalsaetninger { background-image: none!important; }}

    However, it does nothing. Am I missing something or is there another approach I could take?

    #690832

    Hey peter_rongsted,

    Please change your code to following one

    @media only screen and (max-width: 768px) {
    #maalsaetninger .av-parallax-inner {
        background: none!important;
    }}

    Best regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.