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________
Tables
-
- Site Admin
- Posts: 2390
- Joined: 02 Mar 2009, 17:02
Re: Tables
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>
<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>