
Originally Posted by
cgacfox
Code:
/*-----styles for the links within the content---*/
#content post p, #twoCol_content post p a:link {
color: #FFF;
text-decoration: none;
}
#content post p, #twoCol_content post p a:visited {
text-decoration: none;
color: #F00;
}
#content post p, #twoCol_content post p a:hover {
text-decoration: underline;
color: #9ED3ED;
}
#content post p, #twoCol_content post p a:active {
text-decoration: none;
color: #39F;
}
Not sure why this isn't working.
The first part of each rule targets the <p>, not the <a>. So you need
Code:
#content post p a, #twoCol_content post p a:link {
color: #FFF;
text-decoration: none;
}
Edit:
O, I just noticed alo these things:
- you don't have a #content div any more. Try #contentWrapper
- you need to write ".post" rather than "post". There is no element called "post"
- those links are inside an h3, not a p (though they should be in a p. Those aren't headings)
So the overall code would be:
Code:
#contentWrapper .post h3 a, #twoCol_content post h3 a:link {
color: #FFF;
text-decoration: none;
}
Bookmarks