View Single Post
  #6 (permalink)  
Old 07-20-2003, 04:17 AM
Mighty_Y Mighty_Y is offline
Moderator
 
Join Date: Nov 2002
Location: Belgium
Posts: 957
let me explain, but modifications are for you I don't have time for that
Code:
function OpenTable() {
    global $bgcolor1, $bgcolor2;
    echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"7\">";
  echo "<tr>";
    echo"<td><table width=\"100%\" border=\"0\" cellpadding=\"2\" cellspacing=\"0\" bgcolor=\"363636\">
        <tr>
          <td><table width=\"100%\" border=\"0\" cellpadding=\"1\" cellspacing=\"0\" bgcolor=\"000000\">
              <tr>
                <td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
                    <tr>
                      <td bgcolor=\"#000000\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\">
                          <tr>
                            <td>";
}
after this code you get the content and after the content all the tables get closed by this
Code:
function CloseTable() {
    echo "</td>
                          </tr>
                        </table></td>
                    </tr> 
                  </table></td>
              </tr>
            </table></td>
        </tr>
      </table></td>
  </tr>
</table>";
}
So if you want to mod the table you'll have to adjust these two functions, they are html so it shouldn't be to difficult to adjust it
__________________
Yannick R. aka Mighty_Y
http://support.code-area51.com
http://www.code-area51.com

Search before asking makes my life easier!
Reply With Quote