Is there a way to code it so that when using a banner section or image, you can chose the option to either show it on both desktop and mobile or on one of the two? I have seen this on this YouTube video:
For example use the following to hide a section on moble in it’s custom css setting by using a sections ID selector (replace section-id with your sections ID attribute value
@media screen and (max-width: 749px){
#section-id { display: none; }
This worked like a charm so thank you very much! What I did was Admin> Store> Customize> Selected the section I wanted to be on desktop only> Costum CSS> Paste the code without #section-id. Doing it this way allowed me to not have to search for the section ID and still have it working the way it was supposed to. Thankyou!