How can i change category colors

Posted in: Newspaper
Post count: 31

How can i change the category and the smart list number box colors?
null

Post count: 1341

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:

https://forum.tagdiv.com/topic/how-to-change-the-color-2/

Post count: 1341

Ups. Custom CSS-code above was given for Smart List Style 5: https://forum.tagdiv.com/smart-lists/

Post count: 31

I made it as you say but the box is still black 🙁

null
null

(This post uses style 5)

  • This reply was modified 8 years by karayel.
Post count: 623

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.

Post count: 23312

Hi,

Provide your website URL so I can take a closer look at your smart list and also, so I will be able to provide a more accurate CSS code for this.

Thanks.

Post count: 31
Post count: 23312

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!

Post count: 31

I’ve done it and it worked, thank you very much!

Can you also tell me how can i change these button’s colors?
null

Post count: 23312

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!

Viewing 10 posts - 1 through 10 (of 10 total)
The forum ‘Newspaper’ is closed to new topics and replies.