Tagged: link color
Hello,
I have a problem with bold main text & link text colors in the theme: they are both the same color!
How can I make them to be different?
ie. I’ve tried to add the followong to quick css:
.main_color strong {
font-weight: strong;
color: #55606e;
}
but that made ALL text (including links) grey.
How can I make links to be this color: #a67b3a
and bold text, to be this color: #55606e
thanks
Hey amsdes!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.main_color strong, .alternate_color strong { color: #55606e; }
.main_color a, .alternate_color a { color: #a67b3a; }
Best regards,
Yigit
That worked! I had to make sure that bold “B” was on after inserting link though, otherwise nothing happened.
Thank you!