<Theme>
<Name>Custom</Name>
<Dir>custom</Dir>
</Theme>
<link rel="stylesheet" type="text/css" href="style/custom/format.css">

<table width="100%" style="height: 100%;" cellpadding="0" cellspacing="0" border="0">
<%-- ============ Header Section ============== --%>
<tr>
<td colspan="2">
<div class="header"></div>
</td>
</tr>
<%-- ============ Middle Section ============== --%>
<tr>
<%-- ============ LEFT COLUMN ============== --%>
<td width="160px" valign="top" style="background: #E0E0E0;">
<div class="left"></div>
</td>
<%-- ============ MIDDLE COLUMN (page and content) ============== --%>
<td valign="top">
<div class="page">
</div>
</td>
</tr>
<%-- ============ FOOTER SECTION ============== --%>
<tr>
<td colspan="2" height="38px">
<div class="footer"></div>
</td>
</tr>
</table>

<table width="100%" style="height: 100%;" cellpadding="0" cellspacing="0" border="0">
<%-- ============ Header Section ============== --%>
<tr>
<td colspan="2">
<div class="header"></div>
</td>
</tr>
<%-- ============ Middle Section ============== --%>
<tr>
<%-- ============ MIDDLE COLUMN (page and content) ============== --%>
<td valign="top">
<div class="page">
</div>
</td>
<%-- ============ RIGHT COLUMN ============== --%>
<td width="160px" valign="top" style="background: #E0E0E0;">
<div class="right">
</div>
</td>
</tr>
<%-- ============ FOOTER SECTION ============== --%>
<tr>
<td colspan="2" height="38px">
<div class="footer"></div>
</td>
</tr>
</table>

<table width="100%" style="height: 100%;" cellpadding="0" cellspacing="0" border="0">
<%-- ============ Header Section ============== --%>
<tr>
<td colspan="3">
<div class="header"></div>
</td>
</tr>
<%-- ============ Middle Section ============== --%>
<tr>
<%-- ============ LEFT COLUMN ============== --%>
<td width="150px" valign="top" style="background:#E0E0E0;">
<div class="left"></div>
</td>
<%-- ============ MIDDLE COLUMN (page and content) ============== --%>
<td valign="top">
<div class="page">
</div>
</td>
<%-- ============ RIGHT COLUMN ============== --%>
<td width="160px" valign="top" style="background: #E0E0E0;">
<div class="right">
</div>
</td>
</tr>
<%-- ============ FOOTER SECTION ============== --%>
<tr>
<td colspan="3" height="38px">
<div class="footer"></div>
</td>
</tr>
</table>
|
|
You can define the style of the table cells in the JSP files. For example, style="background:#E0E0E0;". The table also contains <div> elements like <div class="right">, < div class="left">, <div class="content">, and so on. You can define the style for <div> elements in the format.css file.
|