View Single Post
  #2  
Old 05-09-2005, 12:58 PM
  TelaFirma's Avatar 
TelaFirma TelaFirma is offline
 

X-Adept
  
Join Date: Nov 2002
Location: North Carolina USA
Posts: 930
 

Default

After you add that to your CSS, you will also need to define a class for the main table with a white background and then add THAT to the CSS as well.


For instance, in the rectangle_top.tpl template, add
Code:
class="MainTable"
to the <Table> definition also setting the table width to some fixed pixel ammount - so it reads something like:

Code:
<TABLE align="center" border="0" cellpadding="0" cellspacing="0" width="768" height="100%" class="MainTable">

Then in the CSS add the class definition

Code:
.MainTable { background-color: #FFFFFF; }
Reply With Quote