Try code below. This will target links inside p tags only. Hoe this help.
.site-content p a { color: #de6957; }
Regards,
Arteo
div#content-wrap a {
color: #13aff0;
}
]]>
Thats just worked immediately. Thank you very much ??
Only the links color in the posts changed like I wanted.
But I noticed the hover color is disabled for this links after I added the code.
I mean, when I hover with the mouse on the links, the color is stays still and doesn’t change like it should be. Do you have a solution for that maybe?
Thanks again
@angelch
Your code just changed the all links in the site including the titles and logo.
Thanks for trying.
which color code you can hover the link.
]]>The :hover selector is used to select elements when you mouse over them.
Example code
.site-content p a:hover { color: #de6957; }
Ref: https://www.w3schools.com/cssref/sel_hover.asp
You may want to explore :visited and :active selectors too.
Regards,
Arteo