Costumize Protfolio Filter

Hello Betheme-Team,

is it possible to costumize the apprearence of the portfolio filter? I would like to change font color and background color of the boxes with the categories on this site : http://landstrich.eu/projekte/

Thank you

Comments

  • HI,
    you can change it with custom css 
    #Filters .filters_wrapper ul li a {
    background: #fff !important;
    border: 1px solid #F7F7F7 !important;
    color: #858585 !important;
    }
  • edited June 2017
    Thank you works great. but now the color doesn´t change anymore when hovering over it and also the selected filter category isn´t highlighted anymore - is there a possibility to keep this effect?

    and i also noticed another problem: when using the load more button some portfolio items appear double and other don´t appear at all. do you have an idea why this happens?
  • Please add this css, the first colors are for hover effect and the second is for active colors 

    #Filters .filters_wrapper ul li.current-cat a {
    background: #fff !important;
    border: 1px solid #F7F7F7 !important;
    color: #858585 !important;
    }
    #Filters .filters_wrapper ul li:hover a {
    background: #fff !important;
    border: 1px solid #F7F7F7 !important;
    color: #858585 !important;
    }
  • thank you!
Sign In or Register to comment.