mtantow 0 Report post Posted June 1, 2011 Hi, I'm trying to reduce the large white space I have on my front page. It's a "Post Page" where I have only one row of boxes - followed by the Morefoot area. However between the Boxes and the Morefoot area is a large white space and it's unclear where this white space comes from and how I can delete it. http://amiroconsulting.com/ Thanks, Martin Share this post Link to post Share on other sites
Kate 3 Report post Posted June 1, 2011 That's because #page and #dynamic-content both have a min-height of 500px set in the CSS. So, they will always be at least 500px tall. If you want to change that value, you can either specify your own (for instance: 300px), or just use "auto". So, as an example: #page, #dynamic-content{min-height:300px;} You would put this code either in Custom Code->CSS or in base.css if you have Base activated. Share this post Link to post Share on other sites
mtantow 0 Report post Posted June 1, 2011 Thanks, Kate. Very helpful. That worked. Martin Share this post Link to post Share on other sites