| classifieds not interpreting new styletags
I am using the default sheet and have made changes to the custom3pal and added a new class in the default style sheet. However when the page is served up my class tag is empty although I have put the new class in the template. if I switch to a class such as small, medium or large - no problem.
is there something built into the code that checks for certain class names?
example:
<span class="{$Style['speedmenu']}">Stuff</span>
in the style sheet:
.speedmenu {
font-size: 18pt;
font-family: Verdana, Helvetica, sans-serif;
}
source code from served page:
<span class="">Stuff</span>
why is this happening - thanks in advance
|