Hello All,

Trying to add a simple tabel for petes sake, in the tpl_main_page.php
I found the right spot, just UNDER the header and just before the rest of the page
to add the code so it diplays as needed but I can not seem to use simple HTML
<table width=100% border=2 bordercolor=red>
<tr>
<td>test</td>
</tr>
</table>

test does show, but the border does not, nor the color so I know where the dame table is
while I develop the page.

Adding to the main page as follows :


<!-- ========== HEADER ========== -->
<?php
/* prepares and displays header output */

if (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_HEADER_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == '')) {

$flag_disable_header = true;

}
require($template->get_template_dir('tpl_header.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_header.php');
?>

<!-- ============================ -->

<table width=100% border=2 bordercolor=red>
<tr>
<td>test</td>
</tr>
</table>

<table border="1" cellspacing="0" cellpadding="0" id="contentMainWrapper">
<tr>

<?php
if (COLUMN_LEFT_STATUS == 0 or (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '')) {

// global disable of column_left

$flag_disable_left = true;
}

if (!isset($flag_disable_left) || !$flag_disable_left) {

?>