To hide a section on Mobile or Desktop, click on section, scroll down to Custom Css, add code as explained below, and click Save.
Hide section on Desktop #
@media only screen and (min-width:767px) {
.content-indent {display:none;}
}
Hide section on Mobile #
@media only screen and (max-width:767px) {
.content-indent {display:none;}
}