Getting rid of blank space in web page

Please look at the bottom of following page: http://javaexperience.com/this-and-super-in-java/

There is a large amount of blank space after the text "Initializing final variables in Java". I have seen the HTML code using Firebug but no clue which element is adding that extra blank space which makes the page look really bad.

Upvotes: 0

Views: 532

Answers (1)

Chris
Chris

Reputation: 27619

The problem comes because sidebar is taller than contents-b and this seems in no small part due to the rather unusual <b class="niftyfill" style="height: 670px;"></b> that seems to exist at the end of there. It seems to be dynamically added (ie firebug shows it to me in the dom inspection but it doesn't appear in source) but I'm not sure what by or why. Hopefully you are aware of whatever script you are running to do this...

Upvotes: 1

Related Questions