I developed a forum theme and only recently noticed that the feeds near the bottom are unevenly sized, even though there is a min-height property on both the feed and the boxes themselves. The strange part is that it works completely fine on every other part of the site, as evidenced here. Is there any reason why it is ignoring my stylesheets?
Share
In firebug, it shows that the height is set on the div itself. That usually implies that it was set with a style attribute on the element itself, or it was set via javascript.
Do you have any javascript setting the size of those divs?
UPDATE
I actually found the culprit. in jquery.vticker.js line 58, it is setting the height to 290px. It looks like it is grabbing the tallest li and multiplying that by 2 to set the height.
I don’t know anything about vticker, but hopefully this will point you in the right direction. Maybe populate the ticker after the size has been set?