Replies: 0
Hello!
My site has side-by-side columns on its blog; these columns are equalized in height using the plugin Equal Height Columns (which does exactly what its name implies).
However, when posting a new comment to any blog, the new comment will expand past the div container set to the plugin height. The author of the columns plugin tells me that I should be able to solve this by pushing the function equalizeTheHeights();
upon the post being submitted.
However, I don’t know what for this plugin will work to hook into it. This is what I’m using to equalize the other column for a Twitter feed, as an example:
twttr.ready(function (twttr) {
twttr.events.bind(
'loaded',
function (event) {
equalizeTheHeights();
}
);
});
Any help would be greatly appreciated.
-Kurt