Viewing 1 replies (of 1 total)
  • Add this to your CSS file:

    @media (max-width: 768px) {
        .hidden-md {
            display: none;
        }
    }

    Adjust the max-width to your device requirements.

    Then add this around your content that you wish to hide:

    <div class="hidden-md">
        // Content
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘Visible only on mobile’ is closed to new replies.