Okay
  Public Ticket #1124753
Porfolio Sorting
Closed

Comments

  • Matt started the conversation

    How can I remove the 'ALL' category from the portfolio sorting? 

    I tried adding the following CSS per a previous ticket I found however it doesn't seem to work with the newest version of Salient. 

    .portfolio-filters-inline #current-category,
    .portfolio-filters-inline .container > ul li:nth-child(2) {
        display:none;
    }

    Thank you! 


  •  9,006
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .portfolio-filters-inline:not([data-color-scheme="default"]) ul li a[data-filter="*"] {
        display: none !important;
    }
    .portfolio-filters-inline:not([data-color-scheme="default"]) ul li:first-child:after {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Matt replied

    Perfect thank you!

  •  16
    Jen replied

    I added this but I still see the word "all" in there

    www.legendsandleaders.com.au/modules-to-choose-from/


  •  9,006
    Tahir replied

    @Jen,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .portfolio-filters-inline ul li a[data-filter="*"] {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  16
    Jen replied

    Thankyou