Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #755828

    I need to set a section only shown in the mobile version, how can I implement it?

    I found an option that “don’t show in Mobile”, but that’s not what I need., I need it not shown in computer browsers but show in mobile

    Thanks,l
    River

    #756205

    Hey river7527,

    Give your section an ID in the element option, then you can try CSS like this in Quick CSS:

    @media only screen and (min-width: 768px) {
    #your-section-id {
      display:none !important;
    }
    }

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.