i tried to change the font color on on the table i created manually, apparently i can’t change the font color using “span”, is there any way i can customize the font color?
Hey nikestars!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
td {
color: red;
}
And if that does not work, please post the link to your website
Best regards,
Yigit
hi, that would cause the entire td font going red. i would like to color-highlight just some of the text
Hi!
Can you please post the link to your page and point out the changes you would like to make?
Regards,
Yigit
Hi!
Which parts of the text would you like to highlight?
You can use following code to display different color in each lines
.main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
color: red;
}
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
color: orange;
}
Regards,
Yigit
Hi!
What if you add a custom css attribute to the span class. Something like this:
<span class="awesome-font">TEXT HERE<span>
You can then apply a custom color to that class:
.awesome-font { color: red !important;}
Try to use the code above without the !important attribute.
Cheers!
Ismael
ok that did the trick, albeit little bit tricky and more hassle :(