I'm using the bootstrap framework and ASP.Net MVC 5. I want a footer on the bottom left of the screen. Reading a few tutorials and samples I ended up with this code in my _Layout.cshtml file:
<footer class="footer">
<div class="container">
<p class="text-muted"><span>Version <a href="/ReleaseNotes.html">1.1.0.0</a></span></p>
</div>
</footer>
This shows a footer on the left bottom side of my page. But it is not fixed. If the website contains no content, the footer is shown on the top of the page.
How to set a fix location for the footer?