View Single Post
  #4  
Old 08-25-2006, 07:20 AM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default Re: Help with CSS Please

[quote=Paul H]
/**** LINK-tag style sheet skin1.css ****/
Quote:
BODY,DIV,TH,P,TD,TT
{
font-family: Arial,Verdana,Sans-Serif ;
font-size: 12px;
font-weight:

The code above is basically the 'master' setting for your entire site. You will not find it referred to in a .tpl file. If you have a line of HTML that is something like:

HTML Code:
<table><tr><td>Some text</td></tr></table>

It will use the css style above because it includes TD tags. You will only find tags that start with a "." (Like .left_menu for example) reffered to in a .tpl file, and generally it will be something like

HTML Code:
<p class=left_menu> Some Text </p>

You can make up new CSS tags that you want, and then code them into the .tpl files.
Reply With Quote