mikeischris
Jan 1 2008, 05:05 AM
I have been trying for the past few weeks to create a simple table in iweb 08. I have created a table in pages and numbers and copied it into iweb, however, rather than producing an editable table, it simply results in a picture file. is there anyway of creating a table in iWeb that can be edited and hyperlinks could be put on specific portions? Any help would be greatly appreciated.
nickg331
Jan 2 2008, 02:08 AM
just insert an html snippet.
CODE
<table border="1">
<tr>
<td>first row</td>
<td>hello!</td>
</tr>
<tr>
<td>second row</td>
<td>hello again!</td>
</tr>
</table>
modify to your needs.
mikeischris
Jan 2 2008, 03:05 AM
Thanks Nick, I'm afraid you are right, I will have to use html. I am actually making the website for a client and was trying to avoid html as much as possible as they will be maintaining it. Thank you for your help!