My stylesheet declares a global link color near the top, ie: a { color: #336600; } Code (markup): But I want to declare a different link color for my content div, so I've placed this further down: #content a { color:#0000ff; } Code (markup): But the link colors still all stay at #336600 Why isn't the declaration further down the style sheet overwriting the other link style for this div?
It's not a problem in the CSS, although it could be related. Show the HTML and the CSS so I can help you.