How do I change the colors of the custom text link & the hovered link without it affecting the font colors for dropcaps and other elements in the Main Content tab?
Hi yifatcohen!
What you say “custom text link” your just talking about regular links that you use in the page content? You can change this in Dashboard > Enfold > General Styling > Main Content.
You could also try some CSS like this.
#top p a { color: red; }
#top p a:hover { color: blue; }
Cheers!
Elliott
Thanks Elliott.
I think there’s a misunderstanding.
Please take a look at this screenshot -http://screencast.com/t/krKcaSWS
And now look at this one – http://screencast.com/t/LMa3a6qg
See how one can’t tell the difference between a link and a title?
Also, when I make the Border colors transparent with RGB – rgba(0, 0, 0, 0)
it messes up the entire layout.
How do I remove the borders completely?
Hey!
Please add following code to Quick CSS instead
.main_color a,.alternate_color a { color: inherit; }
body * { border: none !important; }
Please note that second line of code would remove all the borders. If you would like to remove certain borders, please post a screenshot and show them or post the link to your website and point them out
Cheers!
Yigit
Thanks Yigit!
It works well.
Last question.. how do I make the links blue with an underline, not gray?
Hey!
Please change the first line of code to following one
.main_color a,.alternate_color a { color: blue; text-decoration: underline; }
Best regards,
Yigit
Thank you!