Archived topic
Change Widget Title Colour
1 reply · Started by Sebastián on May 23, 2018
Viewing posts 1–2 of 2
Hi
I want to change the colour of one word from one of my widget titles (The word is: recomendados).
See attachment: https://i.imgur.com/85SGlxs.png
What CSS should I use?
Thanks
Hi Sebastian, you would need some HTML and CSS to do this. Add this markup for your widget title:
Articulous <span class="my-class">Recomendados</span>
Choose a class name to something appropriate and then use this CSS:
.my-class {
color: #AAA;
}
This archived topic is closed to new replies.