Fixing footer.

This commit is contained in:
Víðir Valberg Guðmundsson 2017-04-16 02:20:59 +02:00
parent 68aa108310
commit d511df399d
2 changed files with 11 additions and 11 deletions

View file

@ -71,7 +71,7 @@ a, a:active, a:focus {
/* Footer */ /* Footer */
footer { footer {
position: fixed; position: fixed;
width: 700px; width: 100%;
text-align: center; text-align: center;
background-color: white; background-color: white;
bottom: 0px; bottom: 0px;

View file

@ -106,17 +106,17 @@
{% endif %} {% endif %}
{% bootstrap_messages %} {% bootstrap_messages %}
{% block content %}{% endblock %} {% block content %}{% endblock %}
<footer class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
{% block footer %}
<a href="{% url 'general-terms' %}">General Terms &amp; Conditions</a> |
<a href="{% url 'conduct' %}">Code of Conduct</a> |
<a href="{% url 'privacy-policy' %}">Privacy Policy</a> |
<a href="{% url 'contact' %}">Contact</a>
{% endblock %}
</div>
</footer>
</div> </div>
<footer>
<div class="col-sm-12 col-md-12 col-lg-12">
{% block footer %}
<a href="{% url 'general-terms' %}">General Terms &amp; Conditions</a> |
<a href="{% url 'conduct' %}">Code of Conduct</a> |
<a href="{% url 'privacy-policy' %}">Privacy Policy</a> |
<a href="{% url 'contact' %}">Contact</a>
{% endblock %}
</div>
</footer>
</body> </body>
</html> </html>