Quote:
Originally Posted by y2ksw
In order to ad a column to the standard layout of your pages, you would have to add a table right below the <body> tag and add one or more columns, and close the table right at the bottom of the page, before the </body> tag.
Your layout would roughly look like:
HTML Code:
<body>
<table>
<tr>
<td style="width: 100%;">
Original template contents (header, navbar, contents, footer)
</td>
<td style="width: 160px;">
Additional right column, 160 pixels wide.
</td>
</tr>
</table>
</body>
|
thanks, I really appreciate your help.
Would this be able to go under the new 'Forum Blocks' that are available in VB4.0?