Active
Project:
Genesis
Version:
6.x-2.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Oct 2009 at 20:15 UTC
Updated:
16 Nov 2009 at 20:39 UTC
Hi there,
I tried to enable equal heights on the columns and it would not work. As I did some debugging work, I noticed that <div id="columns"> contains a div inside with the class "columns-inner" which holds the various columns. I modified the jquery code to equalize the heights on that and it works. So the diff (from my subversion repo - still the same line numbers) looks like:
Index: genesis/genesis/js/jquery.equalizeheights.js
===================================================================
--- genesis/genesis/js/jquery.equalizeheights.js (Current Version in production)
+++ genesis/genesis/js/jquery.equalizeheights.js (Working Version)
@@ -90,6 +90,6 @@
if (Drupal.jsEnabled) {
$(document).ready(function() {
- $('#columns').equalHeights();
+ $('#columns .columns-inner').equalHeights();
});
}
\ No newline at end of file
Comments
Comment #1
Jeff Burnz commentedcool
Comment #2
Screenack commentedThis fixed what ailed my site; although I added the class redefinition to the minified file -- Thanks!