Page 1 of 1

Tables

Posted: 29 Jun 2011, 04:29
by streamish
Is there an easy way to insert a vertical ad on each side of the main table on the image pages? I've tried playing with the tables and inserting a new one wiht a certain width, but it doesn't seem to want to work with me. Wanting something like the following:

T I T L E
_______header_______
| |
<ad> | <image> | <ad>
_______footer________

Re: Tables

Posted: 29 Jun 2011, 11:44
by Maksym
Create a table like this:

<table>
<tr>
<td colspan="3" align="center">TITLE</td>
</tr>
<tr>
<td colspan="3" align="center">HEADER</td>
</tr>
<tr>
<td>left ad</td>
<td>image</td>
<td>right ad</td>
</tr>
<tr>
<td colspan="3" align="center">FOOTER</td>
</tr>
</table>