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

    Hi Guys,

    I’m making mobile version of the page and idea is to create color section wich’s elements should only display on mobile and no on desktop. What CSS can use to make section hide from anything above 768px?

    #411686

    Hi anogma!

    Add an ID to your section and then add this to your custom CSS.

    #yourID { display: none; }
    @media only screen and (max-width: 767px) {
    #yourID { display: block !important; }
    }

    Cheers!
    Elliott

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