afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-05-19 10:44 am

[dw-free] Footer out of alignment on Support page in Celerity scheme

[commit: http://hg.dwscoalition.org/dw-free/rev/7e688e8f43c4]

http://bugs.dwscoalition.org/show_bug.cgi?id=1204

Add clearing element

Patch by [personal profile] branchandroot.

Files modified:
  • htdocs/stc/lj_base-app.css
  • htdocs/support/index.bml
--------------------------------------------------------------------------------
diff -r 67a4d75565f1 -r 7e688e8f43c4 htdocs/stc/lj_base-app.css
--- a/htdocs/stc/lj_base-app.css	Tue May 19 08:45:59 2009 +0000
+++ b/htdocs/stc/lj_base-app.css	Tue May 19 10:44:08 2009 +0000
@@ -248,3 +248,6 @@ input.bright {
 .usercontent pre { 
     margin-bottom: 1em;
 }
+
+/* clearing element at the foot of Support index */
+.clear-floats { clear: both; }
diff -r 67a4d75565f1 -r 7e688e8f43c4 htdocs/support/index.bml
--- a/htdocs/support/index.bml	Tue May 19 08:45:59 2009 +0000
+++ b/htdocs/support/index.bml	Tue May 19 10:44:08 2009 +0000
@@ -77,6 +77,9 @@ body<=
     $ret .= "</div>";
 
     $ret .= "</div>";
+	
+	#add element to clear floated divs
+	$ret .= "<div class='clear-floats'></div>";
 
     return $ret;
 
--------------------------------------------------------------------------------