I read your 2nd post (that was closed) -- you don't quite have the CSS format yet...
Quote:
}
.ThumbnailText {
FONT-SIZE: 12px;
|
Not quite. Read up a bit on CSS. Here's one site:
http://www.w3schools.com/css/
A CSS class will usually start with a "." then the "{" and "}" surround the elements... like this:
Quote:
.ThumbnailText { FONT-SIZE: 12px; }
|
Now, to call it, use the class wtihin the TD...
<TR><TD colspan="2" class="ThumbnailText">{$lng.lbl_details}</TD></TR>
This is very basic html. There are many resources on the web to learn about this. Good luck.