0

I've got a big problem.

check this site: http://borbelykertlabor.hu/index.php

the footer is not at the very bottom of the page, if i try to apply:

#footer {
    position: absolute;
    bottom: 0;
}

it will work, but if there is a content big and there is a scrollbar, if you scroll something very bad will happen. :D

BenMorel
  • 34,448
  • 50
  • 182
  • 322
aegyed
  • 1,320
  • 3
  • 20
  • 39
  • Try this: http://stackoverflow.com/questions/2140763/css-push-div-to-bottom-of-page/2140951#2140951 – Bryan A Mar 01 '13 at 21:06

3 Answers3

0

Change your position:absolute to position:fixed

MIIB
  • 1,849
  • 10
  • 21
  • It is position: *fixed*; – Ivanka Todorova Mar 01 '13 at 21:21
  • Its good, yeah but for example look at this: http://borbelykertlabor.hu/content.php?page=gyermek&wrapp=12 I want it to be at the end of the content, not the bottom of the voiewport or how to say it :) – aegyed Mar 01 '13 at 21:22
0

Add this to your CSS and the footer should stay at be visible at the bottom even when resized. Worked for me.

#footer{ 
 position: fixed;
 bottom: 0;
 margin-bottom: 0;
}

#wrapperr{
width: 100%;
height: 100%;
}
Modo Modo
  • 113
  • 2
  • 12
0

I always use http://ryanfait.com/sticky-footer/ & I never have problems. Hope it will help you.

Ivanka Todorova
  • 9,964
  • 16
  • 66
  • 103