Creating templates for the guestbook and entries is fairly easy if you are familiar with HTML.
Entries
To keep things looking neat it is a good idea to create a guestbook entry as a table.
You don't have to it is just easier to get things lined up and looking good.
Here is an example of a basic entry template:
<table cellspacing="2" cellpadding="5" border="0" width="100%" class="GB">
<tr><td width="250">
<p class="smallbold">[DATE]</p>
<p class="normal">[NAME]<br>
<br></p>
[URL]<br><p class="small">
<i>Where are you from? </i><br> [CITY] [COUNTRY]<br><br>
<i>How did you find us?</i><br> [HOWFOUND]</p>
</td>
<td class="normal">
[MESSAGE]
</td>
</tr></table>
<hr>
All of the tags surrounded by brackets like [DATE] are filled in by the script at runtime.
Classes are from the style sheet and the colors etc are set in the config script.
Below are the tag definitions and the style sheet definitions.