in your style.css you can always add a td class, example
|
Code:
|
TD.contentbox {
border: 1px solid;
border-color:#FFFFFF #949494 #949494 #FFFFFF;
} |
then in your opentable you would just add the class like
|
Code:
|
function OpenTable() {
global $bgcolor1, $bgcolor2;
?>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td background="http://www.mysite.com/top.gif" height="37"></td>
</tr>
<tr>
<td class="contenbox" bgcolor="#B7B7B7">
<?
} |