Archived topic
Link color on specific page
3 replies · Started by finansdoktorn on January 16, 2019
Hi,
Is there a good way to change color and decoration of links so it only targets the links on a post/page.
I have tried adding following css:
.entry-content a {
text-decoration: underline;
color: #bc2020 !important;
}
This obviously changes all the links in entry-content areas. I dont want to change the links on example /blogg/.
I also dont want to change the author name, date, category, tags etc links.
I have deactivated cache plugins.
Cheers
Hi there,
You can try something like this:
body.single .entry-content a,
body.page .entry-content a {
text-decoration: underline;
color: #bc2020 !important;
}
If you use browser inspect, each post type (page and post etc) would have unique class in the <body> tag.
Perfect!
Awesome :)