|
Here are a few lines of code that can make a nice difference.
1. Font change When you download your guestbook and place it (SWF file + page with the embed code) on your website you will notice that the text right underneath the guestbook isn't very pretty, unless you are actually using "Times New Roman" as the default font for your site. In that case it would fit right in. If you however don't like how the text looks, you can change it.
To change the font style, add <span style="font-family: Arial, sans-serif;"> before the EMBED CODE and add </span> after the EMBED CODE. Of course you don't have to use "Arial" as your font, this is just an example.
Another way to do it is to add css style sheets in the HEAD portion of your page. If you are not so comfortable editing HTML code, then the first option is probably more suitable for you.
2. Font Color Change To change the font color, add <span style="color: #333333;"> before the EMBED CODE and add </span> after the EMBED CODE.
Note that the #333333 is again just an example color code. You can use whichever Hex color code, or valid color name instead.
You can also combine Step 1) and Step 2) and have both in one tag, as follows:
<span style="font-family: Arial, sans-serif; color: #333333;">
EMBED CODE GOES HERE
</span>
3. Guestbook Positioning To center your guestbook add <div style="text-align: center"> before the EMBED CODE and </div> after the EMBED CODE.
Remember, no changes within the code itself please. Only around the code.. That's the basics. If you have any questions, feel free to ask.
|