Okay
  Public Ticket #1721429
Hide Portfolio filter menu on mobile device mode
Closed

Comments

  •  1
    mattiacattaneo started the conversation

    Hi, I would like to hide the portfolio filter menu when I switch to a "Mobile or Tablet" visualization. How can I do that?

    thank you so much

    Mattia

  •  3,030
    Andrew replied

    Hi Mattia,

    Could you try and use this CSS to hide it on mobile and tablet screens:

    @media only screen and (max-width: 1024px) and (min-width: 1px){
       div.portfolio-filters-inline{
        display:none;
      }
    }
    @media only screen and (max-width: 690px){
      div.portfolio-filters-inline{
        display:none;
      }
    }
    

    add it to salient \ general settings - css script related - custom css code.

    Hope this helps.

  •  1
    mattiacattaneo replied

    Thank you soo much Andrew!!!