5 Replies
Between the body and footer or bw footer and it’s sibling ? Can you please post your codepen so we can see what is going on in your code prior to the footer. Looks like you can open dev tools, have you tried debugging ?
I tried debugging and can't find exactly what it means
it's between body and footer
you have some errors in your html. There are several tags like this
<a href="https://linkedin.com/in/mohammed-sameer-kosmos-society"/" target="_blank">
that / slash and extra quotation " are throwing off elements beneath it. See how the color coding underneath is not working? Also, you havent removed the margin fom your body.
Im also curious why you are using position: sticky
on your footer. This property will allow the items to stick to the top of the viewport once you scroll enough so the start of the footer hits the top of the virewport. But your footer is the last item in the page. I think maybe you are wanting position: fixed
?