If you want to hide a WordPress section only on mobile, just add this section into a div. such as:
<div class="section-name">
// your code
</div>Then add this to Customize => Additional CSS (or custom CSS location for this theme) to hide on mobile only:
@media ( max-width: 768px) { .section-name { display : none; } }
Leave a Reply