Hide the Plus Sign on Mobile Devices

Use CSS rules below to hide plus sign on mobile devices;

@media only screen and (max-width:600px){
    .onoffswitch {
        display:none;
    }
}

Powered by BetterDocs

Leave a Comment