Hello. We have encountered a problem with the classes within the stylesheet. Previously when I worked with the stylesheet, when I gave something within my tpl_header, tpl_footer, and/or define_main page a new class...that class would override the other classes that would be usually controlling that attribute. For example, if I had an active link on my define main page and I gave it the class ftrText, and within that class I defined it as
.ftrText a:link {
font-size: 1.3em;
color: #000;
}
Then that would override both
a:link {
color: #990000;
}
and
body {
font-size: 67.5%
}
however this is no longer the case. For some reason when I define ftrText with a font size of 1.3em and the color:#000...it now adds the font size of the body text with the font size of the ftrText. Does anyone know how to fix this problem?
Thanks in advance for your help!



