Hi There,
I never knew how fiddly and complex creating a super simple footer could be!
codepen link - https://codepen.io/nightcoder21/pen/BxwVdJ?editors=1100
does anyone know why on earth my footer is nearly at the top of the page.
im a beginner but there are 2 things Im sure of
I have placed the correct HTML where it should go (bottom of the page)
2)My CSS seems ok?
footer{
position: absolute;
bottom: 0;
left: 0;
background-color: rgb(250, 75, 83);
width: 100%;
}
Thanks!
Layer
May 8, 2018, 6:01am
#2
You solved it, do you?
Just a feedback: while I was watching your footer, the sliding section above changed size: it changes based on the comment length^^
The rest of the page looks good, gj!
No its still unsolved,I cant seem to find out how to do it
Absolute positioned elements need to be relative to a parent container. Adding position: relative
to the body tag should bring it down the page.
Layer
May 9, 2018, 7:04am
#5
I’m sure it was ok when i looked at it, weird^^
Btw @Kelsea is correct about the footer, and you solved the changing size of the slider too^^