[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 
window. Right now my footer appears wherever the text on my page finished 
...

Thanks!

Jc

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




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 - http://www.bonzai.org.za
Cell: 082 926 1689
- Original Message -
From: Jean-Christian Imbeault [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, October 18, 2001 10:09 AM
Subject: [PHP] How-to put something at bottom of page


 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
 window. Right now my footer appears wherever the text on my page finished
 ...

 Thanks!

 Jc

 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




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 from
what I wrote you'll be able to figure out what you want to do :)

I try to stay away from frames.  I am not sure if I am in the minority, I do
use frames, but when don't have to.. I dont.

Rick

 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
 window. Right now my footer appears wherever the text on my page finished
 ...
 
 Thanks!
 
 Jc
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




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 rest of the rest 
of the screen ... I just want them to be as wide as they need to be, no more 
...

Is there some tag I can use to do this?

Jc


From: Richard Baskett [EMAIL PROTECTED]
To: Jean-Christian Imbeault [EMAIL PROTECTED]
Subject: Re: [PHP] How-to put something at bottom of page
Date: Thu, 18 Oct 2001 01:13:58 -0700

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 from
what I wrote you'll be able to figure out what you want to do :)

Rick

  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
  window. Right now my footer appears wherever the text on my page 
finished
  ...
 
  Thanks!
 
  Jc
 
  _
  Get your FREE download of MSN Explorer at 
http://explorer.msn.com/intl.asp
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




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 that
doesnt work.. I've ran out of ideas and you'll need to use frames ;)

Rick

Happy Birthday to me! :)

 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 rest of the rest
 of the screen ... I just want them to be as wide as they need to be, no more
 ...
 
 Is there some tag I can use to do this?
 
 Jc
 
 
 From: Richard Baskett [EMAIL PROTECTED]
 To: Jean-Christian Imbeault [EMAIL PROTECTED]
 Subject: Re: [PHP] How-to put something at bottom of page
 Date: Thu, 18 Oct 2001 01:13:58 -0700
 
 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 from
 what I wrote you'll be able to figure out what you want to do :)
 
 Rick
 
 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
 window. Right now my footer appears wherever the text on my page
 finished
 ...
 
 Thanks!
 
 Jc
 
 _
 Get your FREE download of MSN Explorer at
 http://explorer.msn.com/intl.asp
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 
 
 
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




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 message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 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
from
 what I wrote you'll be able to figure out what you want to do :)

 I try to stay away from frames.  I am not sure if I am in the minority, I
do
 use frames, but when don't have to.. I dont.

 Rick

  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
  window. Right now my footer appears wherever the text on my page
finished
  ...
 
  Thanks!
 
  Jc
 
  _
  Get your FREE download of MSN Explorer at
http://explorer.msn.com/intl.asp
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]