Link to home
Start Free TrialLog in
Avatar of mtb007
mtb007

asked on

** Lock to Bottom of Browser **

Anyone know of a way to lock an image or cell to a bottom of the web browser? And when the user adjust the browser size, the image/cell will adjust accordingly?

Thanks
:: MTB007::
Avatar of StormyWaters
StormyWaters
Flag of United States of America image

Avatar of mtb007
mtb007

ASKER

Wow, that was quick. Thanks! Can this be applied to the following?:

If the user resize the browser up and it will stop when it hits the bottom of the content? So it dosent cover it up?

Thanks
Ok, I just need to know, do you want it
1. fixed at the bottom of the browser screen
2. at the bottom of the html page but always at the verry least at the bottom of the browser screen?

 Martin
Avatar of mtb007

ASKER

If im understanding you. I want #2
ASKER CERTIFIED SOLUTION
Avatar of mreuring
mreuring
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Oh, one more thing, you have to use a standards-inducing doctype, I've made this template with the most forgiving doctyp available that still allows standards rendering.
Avatar of mtb007

ASKER

Yeah, this is pretty close. Ill jump in it and see if I can clear things up. Thanks again!
And, simple as the template would look, a colleague just corrected me, replace the css portion for #content with:
          #content {
               padding-bottom: 28px; /*Create whitespace to fit the footer in it*/
          }

Else Mozilla based browsers will not create the required whitespace.
Avatar of mtb007

ASKER

ahhh. nice. thanks!