If you have any of the heading tags (h1, h2, etc.) that has links within them then the color set for the <a> tag will supercede the heading tags color.
<h2><a href="wedding.html">Wedding</a></h2> This will show the greyish color which is set by this style:
a {
color: #666666;
text-decoration: none;
}
If you really want to turn those links that are within the heading tags then you will need to add a new style like this:
h2 a, h3 a, h4 a, h5 a {
color: #D50672;
}
You have another style that is for h2 only that you will find that has it's own color:
#content h2 {
margin-bottom: 20px;
font-size: 18px;
letter-spacing: -1px;
color: #808080;
}
Last edited by newseed (January 14, 2009 10:07 am)
Imagine Building and Managing an Online BusinessThe Kasper Group