Okay
  Public Ticket #1523117
Disable shape divider on mobile only
Closed

Comments

  • Laurens started the conversation

    Dear Tahir,

    Is there a way to disable the shape divider on mobile only? I find that it is a nice to have on desktop, but kind of a burden on mobile. Thanks in advance for you help.

    Best regards,
    Laurens

  •  8,467
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 1000px) and (min-width: 1px) {
        .nectar-shape-divider-wrap {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team