smart list number box colors:
custom CSS-code:
/* Smart List Number Box Colors */
.td_smart_list_5 .td-sml-current-item-nr {
background-color: red;
}
change the category box colors:
Ups. Custom CSS-code above was given for Smart List Style 5: https://forum.tagdiv.com/smart-lists/
It seems you’re using list 6 template use this
/* Smart List Number Box Colors */
.td_smart_list_6 .td-sml-current-item-nr {
background-color:#dd3333;
}
If you wanna change color for all list templates then use
/* Smart List Number Box Colors */
.td-sml-current-item-nr {
background-color:#dd3333;
}
Thank you for your understanding.
Hello karayel,
Use the code below and place it in Theme panel -> Custom CSS Area. You should use the ! important tag to give more priority to your code.
.td-sml-current-item-nr{
background-color: rgba(221,51,51,0.9)!important;
}
The result is here -> https://www.screencast.com/t/AkNcixl17
Thanks for your understanding!
Hello karayel,
Please keep in mind that you should follow the same way for achieving the code which will change your buttons colors. Please try using the Inspector Browser, find the class for those buttons and use the CSS code you want. -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks for your understanding!



