Quote:
|
I tried adding "font-size: xx-large" to the CSS file.
|
Actually, I meant making a change elsewhere in the CSS fils, like adding a border to the univeral selector:
Code:
*
{
border: 1px solid black;
}
If all of your elements suddently get a border, you know that at least changes in the style sheet are being picked up. By changing the style you're working with instead, you still can't really tell if the rule set is not available, or if the code is not assiginng the right class.
Anyway, the problem is probably in this:
.HighContrast .HighContrast a
This is a *combined* selector, and says something like: apply to all a elements inside an element with a class called HighContrast inside another element with a class called HighContrast. What you want is a grouped and a combined selector instead (note the comma)
.HighContrast, .HighContrast a
This applies to all elements with a class called HighContrast and to all a elements within an element with a class called HighContrast.
Hope this helps.
Cheers,
Imar