If you've ever put your icons in the Interests area on MySpace, odds are they go down in a single file row like the screenshot above shows. This tutorial will teach you how to get them to go side by side using a little bit of HTML coding called tables. :)
The <tr> section of the code below indicates a new row and the </tr> indicates the end of that row.
The <td> section of the code below indicates a new column in the row and the </td> indicates the end of that column in that row.
<tr>
<td> ICON CODE HERE </td>
<td> ICON CODE HERE </td>
</tr>
</table>
Using this code will give you something that looks like this:
| |
|
If you want more rows, then you would do this:
<table border="0" cellpadding="0" cellspacing="0" rowspacing="0">
<tr>
<td> ICON CODE HERE </td>
<td> ICON CODE HERE </td>
</tr>
<tr>
<td> ICON CODE HERE </td>
<td> ICON CODE HERE </td>
</tr>
</table>
Just keep copying and pasting from <tr> to </tr> until you have all the rows you want. If you want 3 or 4 icons in a row, make 3 or 4 <td>iconcodehere</td> in each <tr>.
Hope that helped. If you're lost or have any questions, ask here :]
















