Okay
  Public Ticket #2350739
Remove Horizontal Portfolio Filter on Mobile Device
Closed

Comments

  • Graeme started the conversation

    Hi

    is there a way of turning off the horizontal portfolio filter on a mobile device? I have a lot of categories and it takes too much space at the top of a mobile screen

    thanks!

    Graeme

  •  3,022
    Andrew replied

    HiĀ Graeme,

    Use the following custom css in Salient > General settings > CSS/Script related:

    @media only screen and (max-width: 1000px) {
       .portfolio-filters-inline {
        display: none;
    }
    }
    

    Hope this helps.