|
Well, for example, this would be the sample css text:
.greylineright {
background-image: url(../stylesheets/graphics/greylineright.png);
background-repeat: no-repeat;
background-position: right top;
}
In say Categories.tmpl, i would just do this (but not in bold or caplitals):
<td class="{$Style['GREYLINERIGHT']}" align="right" nowrap="nowrap">
{$cats['numposts'][$x]}</span> {$cats['lpostlink'][$x]}
</td>
Basically defining new classes in silver.css and then trying to sub them into the template files.
Doesn't seem to be working, unless they are classes that have previously been stated. Anything I add seems to be ignored.
|