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.
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;
}
}
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
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):
Thanks
ThemeNectar Support Team