Okay
  Public Ticket #250693
Portfolio sortable text
Closed

Comments

  • david started the conversation

    Hi,

    I would like to remove the 'sort portfolio' text and 'current catagory' text that appears on the sortable portfolio (horizontal) menu, I'm just not super sure on what to edit in the code as I'm still learning my way around php! 

    I'm guessing it has something to do with this code here form template.portfolio.php

      <li id="sort-label"><?php echo (!empty($options['portfolio-sortable-text'])) ? $options['portfolio-sortable-text'] : __('Sort Portfolio',NECTAR_THEME_NAME); ?>:</li>

    <li><a href="#" data-filter="*"><?php echo __('All', NECTAR_THEME_NAME); ?></a></li>



  •  8,839
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :

    #portfolio-filters-inline #current-category,#portfolio-filters-inline .container > ul li#sort-label {
        display: none;
    }
    

    Cheers


    ThemeNectar Support Team 

  • david replied

    Great, thank you so much!