CSS to hide wrapper on mobile Verson 1 pages

Found it.

Add this CSS:

@media screen and (max-width: 1000px) { .MobileHide { display: none !important; } }

Adjust the width to meet your needs

Put whatever components you want to hide inside of a Wrapper

Add the CSS MobileHide to the Wrapper