Web Layout!

pcmagic

New Member
How do u make an photoshop designed template to be extended so you can keep going down the page?

I know that you have to chop up the layout and then palce it with tables or using CSS!
But how do you do this!

Also How could i make a template page so that when i edit one page it edits my other pages layouts itself!

Thanks
 

Munkeypop

New Member
I don't think this method is supported by some older browsers and it can be a bit dodgy, but if you set the image as background it will repeat it. If you make the image you want so that it will tile downwards this will make it look like the image keeps going down. This can be done a number of ways using html and css. I usually set the background in a table cell so as I can use a couple of different images in different parts of the page.

i.e. <td width="(imagewidth)" background="image.gif"></td>

You can also use "background-repeat" for both x and y directions for more control, but again this isn't fully supported by all browsers (mainly netscape) and you can only use it through css I think.
 
Top