footer position

  • Thread starter Thread starter JP.Gantlin
  • Start date Start date
J

JP.Gantlin

how do i keep my footer at the bottom of the page, even when the page is
empty?
is there a style setting?
 
You can "sort of" do it with CSS. You can definitely do it with JavaScript.
The issue is largely the problem with knowing the user's resolution.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside of the box!
*************************************************
 
The easiest way to do this is to use a table to design the frame of your page. For example, I have a header, a middle (containing a left and right sidebar and a main body section), and a footer. I set the middle section to fill all remaining vertical space, and set physical height for the header and footer. That way the footer always remains at the bottom no matter how much content is on the page.
 
Back
Top