Change Color of Border Boxes on Categories

Hello,
I am trying to change the color of the border of the categories tiles for home page of categories with boxes. I used the below in custom CSS, does not work. Any suggestions ?

.category-boxes-with-topics .category-box {
    border-color: red;
}

1 Like

Iā€™m not quite sure: but you can set the color in the category settings.

However, these changes will work globally:

.category-boxes .category-box {
     border-color: red !important;
}

Or try adding in your construction: !important

4 Likes

This did the trick. It worked !
Thank you so much !

1 Like