I have been trying to get the footer on my page to go the full width of the window (like the navbar) while being static on the page, but haven't been able to figure out how to do so.
How can you do this? I've tried both:
<div class="footer">
<p>This is a footer</p>
</div>
and
<div class="navbar navbar-static bottom">
<p>This is a static navbar</p>
</div>
but neither of them runs the fill width of the page, rather they have margins on each side. How is it possible to change that without messing up the responsive resizing in bootstrap?