tag colour

Hey,

Help would be greatly appreciated. I find the grey tag colour in the side bar and footer with a white text inside pretty hard to read. Is there custom css code I could use to make the tag boxes maybe red the same as the action button? Thanks

Here’s my site

Hi @myanxietyandme,

I hope you are well today and thank you for your question.

You can achieve this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Customize -> Sparkling Options -> Other -> Custom CSS

.widget_tag_cloud a {
  color: #DA4453 !important;
}
.widget_tag_cloud a:hover {
  color: #fff !important;
}

Best Regards,
Movin