Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsFeedback and help needed
Hi there,
Now I just finished setting up my website (http://www.henrikac.com) to see if I'm still having a problem with my footer when the site got online - and it looks like I still got some space between the bottom of the page and the footer (not much) and now I've tried everything.
Any ideas how to fix this?
I could also use some feedback on the design - what's good and what's not so good?
2 Answers
Grace Kelly
33,990 PointsHi Henrik, nice website!! Here's a quick fix you can try:
#wrapper {
min-height: calc(100vh - 82px); /* reduce what you are taking away from 100vh by 1px */
}
Hope that helps!!
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsHi Grace Kelly,
You are a life-saver! I've been struggling with this for ages and couldn't figure it out - Thank you very much! :-D