Creating tables
From GarageSaleWiki
To create tables and add them to your GarageSale auction templates you have to make use of HTML code.
To get something like his:
| condition: | new |
| color: | blue |
| size: | medium |
| ... | ... |
...you have to copy the following sample code and paste it into the description field in GarageSale's Editor mode:
| <table style="border-spacing: 5px;"> |
| <tr> |
| <td>condition:</td><td>new</td> |
| </tr> |
| <tr> |
| <td>color:</td><td>blue</td> |
| </tr> |
| <tr> |
| <td>size:</td><td>medium</td> |
| </tr> |
| </table> |
Replace the sample text between "<td>...</td>".
• To add a new row just add another
| <tr> |
| <td>...</td><td>...</td> |
| </tr> |
• To make the table float left or right just add "float: left" or "float: right", like this:
<table style="border-spacing: 5px; float: left;">
In GarageSale's Editor mode you better disable the 'convert to HTML' checkbox if you insert custom HTML.
