|
Oh, I see you have already set a color.
The thing is, your color attribute is being overrided by the a, a:link, a:active and a:hover styles. Just move those styles up in the document, so that they are defined before the indicator class. And also, change .indicator to a.indicator
EDIT: Or, perhaps easier yet, since the indicator is only used once per page, simply change it from being a class style to an id style. Change class="indicator" to id="indicator" in the html and change .indicator to #indicator in the css. An id style will overide a class style or a tag style such as a and a:hover.
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
Last edited by lizciz; 06-15-2011 at 08:02 AM..
|