View Single Post
  #6  
Old 02-24-2005, 04:46 AM
 
balinor balinor is offline
 

Veteran
  
Join Date: Oct 2003
Location: Connecticut, USA
Posts: 30,253
 

Default

Ahhh...don't use the border function....it produces ugly borders and changing the color of them is not cross-browser compliant. Try using css instead. Replace this:

Code:
<TABLE border="2" width="100%" cellpadding="5" cellspacing="8">

with this:

Code:
<TABLE border="0" width="100%" cellpadding="5" cellspacing="8" style="border: 1px solid #FF0000;">

Change the hexidecimal color code to whatever you want. I set it as red so you could see the results easily.
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
Reply With Quote