Skip to main content

Reply to "HTML Codes for template"

quote:
Originally posted by thevintagelady:
I want to create a custom template with two columns, can anyone tell me how or where I can get the codes?


Hi,

The easy method is to create a table with a single row and two columns. Here's some starter code:

<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td></td>
<td></td>
</tr>
</table>

Each of the <td></td> combinations represent a cell in the table's single row, and you place your other elements for that "column" between the <td> and the </td>. You can also set the width of the column by percent or pixel, e.g. <td width="300"> sets the column width to 300 pixels. Use "50%" as example for percentage width. Note, I set the table's width to 100%, which makes the table operate at page/browser width in the absense of any parent structure limitation.

Hope that helps.

Danno

Edit: If you're looking for a simple double column with top banner framing template, I create this one for the Forum some months back.

http://practicewriter.com/vu/?4DC44
Last edited by danno
Copyright © 1999-2018 Auctiva.com. All rights reserved.
×
×
×
×