Alright, I'm new to this website, but I heard it's the best for this kind of help so here we go. Currently I'm developing my own website, and everything is going good so far, but now that I'm adding a footer, my page wont end at the footer. for example; http://justxp.x10.mx/test/ You see how my page continues after the footer? I've tried adding the height: 100% code, and that didn't work, I've also tried setting the height manually, and that didn't work, anybody know how I can remove the extra space? I want my footer where it is.
Asked
Active
Viewed 64 times
1
-
possible duplicate of [100% Min Height CSS layout](http://stackoverflow.com/questions/25238/100-min-height-css-layout) – Blowsie Jul 31 '12 at 16:53
2 Answers
1
try
position:absolute;
bottom:0px;
to the footer

Iliya Reyzis
- 3,618
- 2
- 19
- 32
-
Tried, it moved the nav in a nice position, but it still didn't remove the space below. – DBS Jul 31 '12 at 17:09
-
if you want it always on bottom, try the **position:fixed;** option :) – Iliya Reyzis Jul 31 '12 at 17:32
-
no I like it how it is now, all I want to do is remove the space after the footer. – DBS Jul 31 '12 at 17:37
-
i guess i just dont understand you request.. as i see it, there always be a space because of the div named "slider-wrapper theme-default", it docent have any height defined – Iliya Reyzis Jul 31 '12 at 17:42
-
-
0
-
Tried, it moved the nav in a nice position, but it still didn't remove the space below. – DBS Jul 31 '12 at 17:09
-
i think its bcs of relative position,change child element of footer also to absolute. – Prashobh Jul 31 '12 at 17:13
-
-
when i am giving clear:both,its working fine for me,can you make jsfiddle then others can also help you – Prashobh Jul 31 '12 at 17:29