somagoods 0 Report post Posted November 11, 2010 Greetings! If you look at this page: http://somagoods.com/ourstory you'll notice the white space between the page content and the boxes. How can I decrease that space? Thanks very much! Share this post Link to post Share on other sites
nett-ed 0 Report post Posted November 11, 2010 It looks like part of the problem is that the space created is for tags related to the post to appear there. You could just use custom css to not display that area by trying the following in the Custom CSS section of the settings Panel under PlatformPro >> Settings >> Custom Code : .page-id-6 .tags { display: none; } .page-id-6 #boxes .content-pad { padding: 0; } Share this post Link to post Share on other sites
somagoods 0 Report post Posted November 11, 2010 Thanks, I tried that and it did move it up a little. However, there's still a sizable gap. I tried putting in a negative number but that didn't work. Share this post Link to post Share on other sites
nett-ed 0 Report post Posted November 11, 2010 Make sure the second css entry begins with [b].page-id-6 #boxes .content-pad[/b] I just edited it in my previous post from .page-id #boxes .content-pad which was wrong because it was missing the -6. Maybe adding this will get you a little less space and closer to what you want .page-id-6.fixed_width #boxes .dcol-pad { padding: 0 10px; } .page-id-6 .fpost { margin-bottom: 0; } Share this post Link to post Share on other sites
somagoods 0 Report post Posted November 11, 2010 That's beautiful! Thank you so much! Share this post Link to post Share on other sites