From 2877c74b2a02af89a3e711e7173a6021443244fd Mon Sep 17 00:00:00 2001 From: Pavan Rikhi Date: Mon, 8 Jun 2015 10:31:08 -0400 Subject: [PATCH] [#589] Make Footer Flush with Bottom of Page Closes #589 --- fec/core/static/css/fec.css | 13 +++++++++++++ fec/core/static/less/fec.less | 3 --- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/fec/core/static/css/fec.css b/fec/core/static/css/fec.css index 58e56f5..192414b 100644 --- a/fec/core/static/css/fec.css +++ b/fec/core/static/css/fec.css @@ -76,11 +76,24 @@ form#site-search div.form-group { /* Footer */ +/* Make the footer flush with the bottom of the rendered page */ +body { + display: table; + width: 100%; +} +footer { + display: table-row; + height: 1px; +} + /* Remove Bottom Margin from Community Spotlight Profile Image */ div#footer-community-spotlight img { margin-bottom: 0px; } +/* Make the FIC Logo a separate block from it's surrounding text */ +a#fic-link { display: block; } + /* Home Page */ diff --git a/fec/core/static/less/fec.less b/fec/core/static/less/fec.less index 0d231b0..bfd05d7 100644 --- a/fec/core/static/less/fec.less +++ b/fec/core/static/less/fec.less @@ -30,9 +30,6 @@ } } -/* Make the FIC Logo a separate block from it's surrounding text */ -a#fic-link { display: block; } - /* Community Customizations */