Okay
  Public Ticket #184123
Hiding sections on mobile
Closed

Comments

  •  21
    Simon started the conversation

    Hi there.

    Is it possible to hide a section on mobile only?

    For example, I don't want the client logo slider to appear on mobile.

    Many thanks, Si

  •  1,069
    ThemeNectar replied

    Hey Simon!

    Yes it's pretty easy too - just wrap your css rules to hide your desired elements in a media query. Here's an example for the client slider (just add the class "clients row" without quotes to the row that holds the element:

     
    @media only screen and (min-width : 1px) and (max-width : 1000px) {
       .clients-row {
           display: none!important;
        }
    }
    

    Cheers :)