Warning: Please include a link to the DD script in question in your post, in this case: Glossy Accordion Menu. See this thread for the proper posting format when asking a question.
There might be some CSS specificity at play here causing others styles you've defined for the same links to override what you've specified above, since it's pretty weak specificity wise. To test this, try adding "!important" to the mix:
Code:
.glossymenu a.expanded{
color: #FF0000 !important;
}
.glossymenu a.collapsed{
color: #00FF00 !important;
}
Bookmarks