Tables

Post Reply
streamish
Posts: 3
Joined: 07 Jun 2011, 16:42

Tables

Post by streamish » 29 Jun 2011, 04:29

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________

Maksym
Site Admin
Posts: 2071
Joined: 02 Mar 2009, 17:02

Re: Tables

Post by Maksym » 29 Jun 2011, 11:44

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>

Post Reply