Hi! Since I came here last, I am moving my website to another free provider who waves ads for a $1.00 a year. Not bad at all. What promoted the move was Anszwers locked me off my website, so I cannot loggin and work on my site. I sent several emails to these people, and I have had no reply.
So if you are using a free site, make sure you have a means to contact the site and it's contact with it's owners. I spent about a month setting that site up, so what somewhat frustrated and disappointed by their actions. My new site is almost a clone of the old site:
http://tailjewelry.s5.com/index.htmlI like extra large full width pictures for my pages, as opposed to tiles. And there are a few ways to do this.
One way is have a program like (FREE) "Infranview," that can manipulate your picture, makes thumbs, etc. I size my webpage background pic to 1280x960 pixels. That fills my screen, but might be to large for older machines, and frankly some old win95 or win98s might not be able to open that big of an image. I then upload it to a (FREE) storage place that handles my large pics. They are rare, so here is a link (
http://www.imagecave.com/ ) to a site that will store the giant images you can then hotlink to your webpages. And sorry, little 95-98s, but I am stuck on big.
If this Giant size is a concern, here is another way to use your large picture and put it on your webpages. Get yourself the (FREE) "Splitz" program. It takes a full screen pic & cuts it into as many pieces as you need to get it uploaded to the server, and it makes you a table HTML coding complete with the pic-pieces names. After uploading just change the url names over to your server/page code. The full picture comes together when you open the page. The trick here is to cut your pic slices so they do not interfer with what you are putting on the page, like the menu, articles, or other items. You have to do that math before you splitz. These type pages do load fast, so they do have an advantage even over tiled pic sizes.
The way I code these pages is make the cut piece a background pic of the table it sits in, and then you can lay items ontop of it.
Here is the Splitz code for a large pic cut into 4 pieces.
<table cellspacing = 0 cellpadding = 0 border = 0>
<tr><td><img src="2_1_1.jpg" width=550 height=548></td><td><img src="2_2_1.jpg" width=574
height=548></td></tr>
<tr><td><img src="2_1_2.jpg" width=550 height=540></td><td><img src="2_2_2.jpg" width=574
height=540></td></tr>
</TABLE>
To make the pic into a background, you just change the <TD> properties from img src= to background=and insert the URLs for the pieces.
<table cellspacing = 0 cellpadding = 0 border = 0>
<tr><td background="http://paintedcavestorall/image/2_1_1.jpg" width=550 height=548 border="0"></td><td background="http://paintedcavestorall/image/2_2_1.jpg" width=574
height=548></td></tr>
<tr><td background="http://paintedcavestorall/image/2_1_2.jpg" width=550 height=540></td><td background="http://paintedcavestorall/image2_2_2.jpg" width=574
height=540></td></tr>
</TABLE>
Ooops! I almost fogot! You want to add border="0" with the images like so
<tr><td background="http://paintedcavestorall/image/2_1_1.jpg" width=550 height=548 border="0">
I hope you see how that works!! Wish you well