Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications:
Alternatively use your Child Theme style.css file to hold your CSS modifications:
.entry-content a {
color: pink !important;
}
Thanks Andrew, I have changed it. one more question, I want link to change when mouse hover, can you give me the code for this too? thanks
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try:
.entry-content a:hover {
color: pink !important;
}
I am disturbing you, but I need this color only in the posts, not on the main page. sorry again 🙁
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try:
.single-post .entry-content a {
color: pink !important;
}
.single-post .entry-content a:hover {
color: pink !important;
}