hi, in my website when i write something in bold or when i use a link it’s the same color, how may i change the color of bold to be black ? (cf example behind)
Hey nicolasmasson,
The link provided above does not seem to be working for me.
Best regards,
Jordan Shannon
hi, i had a few problems yesterday and now the site is perfectly working again you can go to the site
Hi nicolasmasson,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.main_color strong {
color: #000;
}
If you need further assistance please let us know.
Best regards,
Victoria
working! you’re my angel, i’ve spent hours in css trying to find the good code
thanks
hi, if i want bold to be in deep blue and links to be shown underlined and in light blue what css shall i add?
Hi,
You can use the following css code:
.main_color strong {
color: darkblue;
}
.main_color a {
color: lightblue;
text-decoration: underline;
}
Hope it helps :)
Best regards,
Nikko