Hi
I want to chnage the color of links in my POSTS. But the in the CSS when i change the color, it also changes the color of links in the SIDEBAR.
How do i change just the color of the links in my POSTS without changing the ones in my SIDEBAR?
Here is the code i'm referring to:
body {
margin: 0;
padding: 0;
background: #e9e7e8 url("images/background.gif") repeat-y center;
font: 11px/18px Arial;
color: #222222;
}
img {
border: 0;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #ae141e;
}
Thanks.