Search in forum:
Search


Author Message
Post12/03/2006 at 3:33pm (UTC)    
Post subject: Change background of the white column in the middle

You can either set an image or a color as a new background.

For colors, it works like this:
1. Copy this HTML-code on the page you want to change the background. If you want to change it on every page, you have to paste this code on EVERY page.
Code:
<table style="WIDTH: 480px; HEIGHT: 650px" height="650" cellspacing="1" cellpadding="1" width="480" align="center" border="0">
<tbody>
<tr>
<td style="background-color:#xxxxxx;">YOUR CONTENT!!!</td>
</tr>
</tbody>
</table>

2. xxxxxx stands for the color code. Here's a nice listing of some codes: http://www.christiansitehosting.com/Hexadecimal%20Color%20Coding%20Chart.gif
3. Modify the widht/height settings until they suit you.

Images:
1. Upload your image and get the image address of it!
2. Paste this code on your page:
Code:
<table style="WIDTH: 480px; HEIGHT: 650px" height="650" cellspacing="1" cellpadding="1" width="480" align="center" border="0">
<tbody>
<tr>
<td background="put your image address here">YOUR CONTENT</td>
</tr>
</tbody>
</table>

3. Again, change the width/height values until they suit you.
Display posts from previous:   


Powered by phpBB © 2001, 2005 phpBB Group