How to change link color?

Dmyles

Junior Member
Joined
Jul 5, 2020
Messages
149
Reaction score
26
Hi, When I try to change the link color in my articles, it changes the every links including home pages.menus.etc. How do I fix it?
 
Look for a class in the html where the content starts. It might be for example -

<div class=“content”>

Then in the additional css you can write something like this-

.content a
{
color:red;
}
 
Your theme options should have option to change all link's colors in content. WP usually doesn't need to go into code for stuff like this.
 
Thanks all. I found out the solution. It's
.entrystyle a { color:red;}
 
Back
Top