HTML/CSS Footer is not visible on my website | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

HTML/CSS Footer is not visible on my website

Please help me! FOOTER is not visible on my website. How will I fix this ? What is the error ? Can someone please fix this ? 😩 Here is the code: https://code.sololearn.com/WzCJV6cF5ees/?ref=app

10th Feb 2021, 12:28 PM
thatstupidcoder
thatstupidcoder - avatar
22 Answers
+ 3
You may want to take the HTML 5 course here on Sololearn. That is a great place to start. I took it 3 times.
10th Feb 2021, 3:20 PM
Chris Coder
Chris Coder - avatar
+ 6
thatstupidcoder Bootstrap classes are built in the way that can adjust your website according to different devices. You no need to write lots of CSS. Just apply classes. You can also make but you need to know how to make responsive website which can adjust on different devices.
11th Feb 2021, 3:57 AM
A͢J
A͢J - avatar
+ 3
thatstupidcoder Remove position: relative and don't put that much height here .contentarea { width: 100%; //position: relative; top: 450px; background: black; height: 100%; } make width 100% here .wrapper { width: 1170px; margin: 0 auto; } https://code.sololearn.com/W0yDP46voJNk/?ref=app
10th Feb 2021, 1:41 PM
A͢J
A͢J - avatar
+ 2
Thank you I Am AJ !
11th Feb 2021, 6:29 AM
thatstupidcoder
thatstupidcoder - avatar
+ 1
wait let me try that
10th Feb 2021, 3:03 PM
thatstupidcoder
thatstupidcoder - avatar
+ 1
The outerfooter appeared but it is only at the top portion of the website however the social media icons and innerfooter is still not visible on the website
10th Feb 2021, 3:07 PM
thatstupidcoder
thatstupidcoder - avatar
+ 1
no. I’m still a begineer
10th Feb 2021, 3:18 PM
thatstupidcoder
thatstupidcoder - avatar
+ 1
I already took the basics in HTML5 however some of it is a bit confusing when applied
10th Feb 2021, 3:21 PM
thatstupidcoder
thatstupidcoder - avatar
+ 1
where can I see that course?
10th Feb 2021, 3:21 PM
thatstupidcoder
thatstupidcoder - avatar
+ 1
help <h2> and <h4> is not visible on the main website
10th Feb 2021, 4:02 PM
thatstupidcoder
thatstupidcoder - avatar
+ 1
are bootstrap are like template ?
10th Feb 2021, 4:27 PM
thatstupidcoder
thatstupidcoder - avatar
+ 1
what is the advantage of having an inbuilt classes than self- made classes ? can you please enlighten me, i’m very nuch confused
10th Feb 2021, 5:36 PM
thatstupidcoder
thatstupidcoder - avatar
11th Feb 2021, 2:31 AM
Sagor Mahmud
+ 1
If I already have a external css and html can I insert the bootstrap in my code ?
11th Feb 2021, 5:56 AM
thatstupidcoder
thatstupidcoder - avatar
+ 1
thatstupidcoder Yes you can..
11th Feb 2021, 6:25 AM
A͢J
A͢J - avatar
0
I tried removing position: relative and added the 100% width however it messed up my layout. The outerfooter appeared but it’s only in the upper left side. i needed the footer to be at the bottom of the website
10th Feb 2021, 2:21 PM
thatstupidcoder
thatstupidcoder - avatar
0
Not sure where your footer is hiding but you can bring it back with this. Put at the end of your CSS document. .footer { position:fixed; bottom: 0px; width:100%; }
10th Feb 2021, 2:58 PM
Chris Coder
Chris Coder - avatar
0
Have you completed a HTML 5 course?
10th Feb 2021, 3:17 PM
Chris Coder
Chris Coder - avatar
10th Feb 2021, 3:21 PM
Chris Coder
Chris Coder - avatar
0
thatstupidcoder You need to learn about CSS frameworks to make website with better UI and responsive website. https://code.sololearn.com/WEL6QNzbHhrt/?ref=app
10th Feb 2021, 4:07 PM
A͢J
A͢J - avatar