Index: lams_central/web/css/defaultHTML_learner.css =================================================================== diff -u -r1f4a9a43a9c4159a444be75f060b58c217d234be -ra175a0599dd4da41780a4a857a0a84151daf18fe --- lams_central/web/css/defaultHTML_learner.css (.../defaultHTML_learner.css) (revision 1f4a9a43a9c4159a444be75f060b58c217d234be) +++ lams_central/web/css/defaultHTML_learner.css (.../defaultHTML_learner.css) (revision a175a0599dd4da41780a4a857a0a84151daf18fe) @@ -641,14 +641,30 @@ padding-left: 15px; } -/* Login page */ -.footer { +/* Login page + * CSS to make the footer stick to the bottom see http://cssreset.com/how-to-keep-footer-at-bottom-of-page-with-css/ + * Height of footer set to match the navbar at the top for visual reasons - it may be changed. + */ +.login-body { + margin:0; + padding:0; + height:100%; +} +.login-content{ + min-height:100%; + position:relative; + padding-bottom:50px; +} +.login-footer { width: 100%; - /* Set the fixed height of the footer here */ background-color: #f5f5f5; - font-size: 75%; - padding-top: 2px; + font-size: 85%; + padding-top: 15px; border-top: 1px solid#e7e7e7; + height:50px; + position:absolute; + bottom:0; + left:0; } /* fontawesome icon x-small */ Index: lams_central/web/login.jsp =================================================================== diff -u -ra7da7f0302f87ce08262e25c6595539fa12a6b17 -ra175a0599dd4da41780a4a857a0a84151daf18fe --- lams_central/web/login.jsp (.../login.jsp) (revision a7da7f0302f87ce08262e25c6595539fa12a6b17) +++ lams_central/web/login.jsp (.../login.jsp) (revision a175a0599dd4da41780a4a857a0a84151daf18fe) @@ -52,6 +52,7 @@ } $(document).ready(function() { + $('html').addClass('login-body'); if (!isBrowserCompatible()) { $('#browserNotCompatible').show(); } @@ -60,7 +61,9 @@ }); -
+ +