I need to change the color of the links inside the posts.
I tried to change it in the settings (General Settings – Main Content), but the color doesn’t change.
How can I fix it?
Hey Pandora,
Try the following in quick css:
.single p a{
color:red!important;
}
Adjust the color to what you need.
Best regards,
Jordan Shannon
Thank you Jordan,
it’s works!
But there’s a problem: This command modifies all links on the site (even phone numbers on footer, for example). I want to change the color of the links only inside the blog posts. Only the links of the articles, not the pages or other parts of the site. Is this possible?
Sonia
Hi,
Adjust the css to this:
.container.template-blog.template-single-blog a{
color:red!important;
}
Best regards,
Jordan Shannon