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; }
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
!important
This did the trick. It worked ! Thank you so much !