I have my primary color main content set to be a red but this is also making anything with a strong tag around it appear in red. How can I stop this happening and just have my strong text in its own colour?
In the Enfold theme options you can enter quick css in the general styling area.
.main strong {
color: #000000;
}
should affect all strong tags in the main section (after the header)
you can also check out the advanced styling in the enfold options to customize the formatting for several tags/elements.
That is not working. The issue is affecting some text that I have placed in a slider
http://176.32.230.2/tdselectrical.com/solutions/
The text in the slider element that reads TDS Electrical is simple wrapped with but comes out red – I want it to remain white.
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.main_color strong, .alternate_color strong { color: inherit !important; }
and flush browser cache after applying the code
Regards,
Yigit
That’s done the trick. Thank you.
Ah, spoke too son.
It seems this has had a knock on effect in that it has taken the colour out of all the elements on the page as well. Is there a way I can stop it putting the red on the strong element just within the slider text?