0
Problem: I have a retractable menu and a footer on my online system. I’m not getting to make sure that when the menu is dried my footer can accompany the menu.
Source Code:
Html
<footer id="footer" style="margin-top: 40px;">
<div class="col-xs-12">
<div class="col-md-6">
<p class="text-white">Nome da Empresa © 2011 - 2019</p>
<p class="text-white">CNPJ: 11111111/111110001-54</p>
</div>
<div class="col-md-6">
teste
teste
</div>
</div>
</footer>
CSS
#footer {
position: unset;
height: 110px;
bottom: 0;
width: 100%;
background-color: #133c50;
}
footer p {
padding-left: 7%
}
What I expect from this solution?
Make it, when the user clicks the button to collect the footer writing menu can somehow accompany it.
For my friend, it was very nice. Thank you very much.
– Thiago Correa
@Thiagocorrea quiet my dear that good q helped
– hugocsl