1
I’m creating a footer (orange color), image below:
The problem is that it hides part of the page content (a green banner, as can be seen, and on other pages, news and information)
How to leave it underneath all the content so it doesn’t hide anything on the screen.
<div class="rede-social-rodape"></div>
div.rede-social-rodape{
position: fixed;
bottom: 0;
right: 0;
width: 100%;
height: 150px;
background-color: #E9CA2B;
border-top: 2px solid #b79900;
}
Guy with only this piece of code can’t help you. But basically put in the last div before Footer a padding bottom that’s the same height as the footer. If you do, let me know.
– hugocsl
@hugocsl how much code you need? I can post.
– Gladison
At least page HTML and CSS, if you have a script you don’t need. html and css only, something to simulate your problem
– hugocsl
@hugocsl but what you do not hide the content is give a padding bottom?
– Gladison
it has to be in the last container before the footer, it has to have a padding-bottom with the same height of the footer, that should solve. Or else you already put this padding-bottom of the footer height straight on the body, this should solve also
– hugocsl
@hugocsl resolved. Thank you very much! If you want to formulate a reply.
– Gladison
Thanks Gladison posted the comment as reply vlw []s
– hugocsl