i've got a site (asp.net and bootstrap) the problem is that i have a relative positioned footer that goes up when resize the window (or when see from mobile device) i can add margin to the content of the page to prevent this problem (but i will have much white space wich is very horrible)
here's my footer:
<div class="footer" id="footer" >
<div class="piede_circolare" style="display:inline-block; padding:5%; border-radius:50%; background-color:Black;">
<div><h2>FEATURES</h2></div>
<div style="text-align:left;">
<ul>
<li>User Guides</li>
<li>FAQ</li>
<li>Shortcuts</li>
<li>Glossary</li>
<li>Forum</li>
</ul>
</div>
</div>
<div class="piede_circolare" style="display:inline-block; padding:5%; border-radius:50%; background-color:Purple;"">
<div><h2>SERVICES</h2></div>
<div style="text-align:left;">
<ul >
<li>User Guides</li>
<li>FAQ</li>
<li>Shortcuts</li>
<li>Glossary</li>
<li>Forum</li>
</ul>
</div>
</div>
<div class="piede_circolare" style="display:inline-block; padding:5%; border-radius:50%; background-color:Black;"">
<div><h2>ABOUT US</h2></div>
<div style="text-align:left;">
<ul >
<li>User Guides</li>
<li>FAQ</li>
<li>Shortcuts</li>
<li>Glossary</li>
<li>Forum</li>
</ul>
</div>
and the css:
.footer
{
position:relative;
color: white;
background-color:#242424;
padding: 8px 0px 0px 0px;
margin: 0px auto;
text-align: center;
line-height: normal;
margin-bottom:0;
bottom:0;
border-top: 5px solid #242424;
-webkit-transition: border-color 1s ease;
-moz-transition: border-color 1s ease;
-o-transition: border-color 1s ease;
-ms-transition: border-color 1s ease;
transition: border-color 1s ease;
}
.footer:hover
{
border-color: #77008F;
}
25% zoom (here's the problem-->see white space below the footer):