[PHP] How-to put something at bottom of page

2001-10-18 Thread Jean-Christian Imbeault
I'm not sure if this is a PHP or HTML question but can anyone tell me of a way to place an image or text at the bottom of a browser window? I have some pages that have only a bit of text and when I place my footer on that page I would like it to line up nicely with the bottom of the browser

Re: [PHP] How-to put something at bottom of page

2001-10-18 Thread Rudi Ahkers
You can use frames for that. Create a frame, say index.html, and then two pages, one for the footer, and one for the other pages which will load inside the frameset. Look at http://www.bonzai.org.za/home.php?id=offer ample Rudi Ahlers UNIX Specialist and Web Developer Bonzai Web Design -

Re: [PHP] How-to put something at bottom of page

2001-10-18 Thread Richard Baskett
You can do this with html, just make your page a table with height=100%, and then have your footer in it's own row at the bottom with valign=bottom and make sure your table cell with your main content is valign=top. Since I can not see what you're doing I cant give you specifics, but I think

Re: [PHP] How-to put something at bottom of page

2001-10-18 Thread Jean-Christian Imbeault
This almost works ... The only problem is that all cells are stretched vertically. For example my table has four rows. The first one is aligned with the top (good) and the last one is aligned with the bottom of the screen (good). Bu the two in the middle have been stretched to fill out the

Re: [PHP] How-to put something at bottom of page

2001-10-18 Thread Richard Baskett
Hmm.. using frames would work, but let's try something else. Make a whole new table underneath your main table and make it 100% height and see if that works. It should crunch your first table to normal size and then your second footer table 'should' take up the rest of the space on the page. If

Re: [PHP] How-to put something at bottom of page

2001-10-18 Thread Lucas Chan
This thread is off topic, but anyway. I would highly recommend not using tables to do this. You'll find that in some browsers it will cause scroll-bars to become active when they clearly don't need to be. Very ugly indeed. Regards, [ lucas ] Richard Baskett [EMAIL PROTECTED] wrote in