I'm trying to change only the color of links in posts, but instead everything gets changed (categories, comments, sidebar links, blogroll, etc). Is there any way to just single out the links in posts' color?
I'm trying to change only the color of links in posts, but instead everything gets changed (categories, comments, sidebar links, blogroll, etc). Is there any way to just single out the links in posts' color?
with your theme, try adding the following to your CSS:
.entrance a {
color: #45c2f2;
text-decoration: none;
}
.entrance a:hover {
text-decoration: underline;
}
Try that on for size.
you are a master. thank you very much!
This topic has been closed to new replies.