Okay
  Public Ticket #293765
Turn on "Sort Portfolio" only on mobile
Closed

Comments

  • Chelsea started the conversation

    Hi,

    Is it possible to turn off the "Sort Portfolio" option when viewing the site from a mobile device? I still would like the Sort Portfolio to work when viewing the site from a computer. Thank you!

  • Chelsea replied

    Sorry the heading should say "Turn OFF "sort portfolio" only on mobile"

  •  8,839
    Tahir replied

    Hey Chelsea!

    It can be hidden with some custom css. Add this into the Custom CSS box located in your Salient Options panel :

    @media only screen and (max-width: 480px) {
        #portfolio-filters {
            display: none !important;
        }
    }
    

    Thanks


    ThemeNectar Support Team