This topic has 5 replies, 3 voices, and was last updated 9 years, 5 months ago ago by Stan Russell
Hi, can you please tell me how to change the link color in blog posts? The link color is nearly identical to the text color and can’t be seen. I did not see any place in the theme options to set blog link colors but I do have custom CSS enabled. Any guidance would be appreciated!
Hello,
Try to change content color in custom.css file:
.content-article p {
color: #767676 !important;
}
How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
Regards,
Eva Kemp.
Hi Eva and thanks for your help. I’m actually trying to change the hyperlink color only. So, for example, I would like: < a href= ‘http://www.thisisawebsite.com ‘>link color I want changed</ a> – specifically I want to make the color red.
Thanks again for your help!
Ok, I was able to figure out a solution. Here’s what I used:
.content-article a {
color: #FF0000 !important;
}
.content-article a:hover {
color: #0000FF !important;
}
If there is a better way to do this, please let me know. Otherwise this seems to be working.
Hello archer0830,
this is correct code for changing links color.
Regards,
Stan Russell.
You must be logged in to reply to this topic.Log in/Sign up