View Single Post
  #5  
Old 08-29-2006, 03:44 PM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: Text on Thumbnails Page

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.
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote