diff options
author | prathamesh | 2017-10-05 18:28:50 +0530 |
---|---|---|
committer | prathamesh | 2017-10-05 18:28:50 +0530 |
commit | 6aa8fbc417df79befd51eee53cfe87d6883dbfb3 (patch) | |
tree | fc926ac4420143ce79015f7919c276c5dbea18d9 | |
parent | 718f2f27b8a1743e8578daca7254f7ef98af0ce6 (diff) | |
download | online_test-6aa8fbc417df79befd51eee53cfe87d6883dbfb3.tar.gz online_test-6aa8fbc417df79befd51eee53cfe87d6883dbfb3.tar.bz2 online_test-6aa8fbc417df79befd51eee53cfe87d6883dbfb3.zip |
changed div class to avoid conflict with bootstrap
-rw-r--r-- | yaksh/static/yaksh/css/dashboard.css | 5 | ||||
-rw-r--r-- | yaksh/templates/base.html | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/yaksh/static/yaksh/css/dashboard.css b/yaksh/static/yaksh/css/dashboard.css index 94005e1..20a0339 100644 --- a/yaksh/static/yaksh/css/dashboard.css +++ b/yaksh/static/yaksh/css/dashboard.css @@ -88,10 +88,11 @@ body { float: right; } -.info { +.logged_user_info { height: 70px; padding:0 5%; position:absolute; bottom:0; width: 100%; -}
\ No newline at end of file +} + diff --git a/yaksh/templates/base.html b/yaksh/templates/base.html index efac26d..e7cc15c 100644 --- a/yaksh/templates/base.html +++ b/yaksh/templates/base.html @@ -53,7 +53,7 @@ {% endblock %} </div> <footer class="footer" id="footer_div"> - <div class="info" align="center"> + <div class="logged_user_info" align="center"> {% block info %} {% endblock %} </div> |