• SK

    (@sooskriszta)


    Can I remove comments (and commenting) on mobile devices?

Viewing 1 replies (of 1 total)
  • Most easily, you may hide them using a CSS media query. For example something like:

    @media screen and (max-width: 480px) {
    .comments {
    display: none;
    }
    }

    Of course, you’ll need to identify the appropriate selector, and write it in place of where I wrote .comments in the code block.

Viewing 1 replies (of 1 total)

The topic ‘Remove comments on mobile’ is closed to new replies.