How do I change the color of the JQuery filters on the blog.

How do I change the color of the JQuery filters on the blog ? 
I want a color for each category, I was using the code below, but it does not work just in the filters.


#Filters .filters_wrapper ul li a.category-comunicacao {
    display: block;
    padding: 7px 10px;
    background: #000 !important;
    border: 1px solid #F7F7F7;
    color: #858585;
}



Comments

  • edited February 2018
    I got it! I used this CSS code 

    #Filters .filters_wrapper ul li a[data-rel=".category-comunicacao"] {
        color: #fff;
        background: #000;
    }


    in the case just change the ".category-communication" by category class ".category-slug" (just change for your slug here)
Sign In or Register to comment.