I’d like to remove the footer from mobile devices. Any help would be appreciated.
Please add the following CSS under Online Store → themes → edit → theme.scss.liquid under assets folder
@media only screen and (max-width: 600px) {
div#shopify-section-footer {
display: none !important;
}
}