vetlaw 0 Report post Posted February 9, 2012 A number of forums address this topic, but I haven't been able to get any of the solutions to work. I'm trying to reduce the padding/white space between my feature and the content area so that the entire top of the page is tighter. The content area has boxes at the top followed by the blog posts. The website is http://www.veteranslawclinic.org Thanks in advance for your help! Share this post Link to post Share on other sites
Rob 547 Report post Posted February 9, 2012 Try the code below in CSS Rules. It's a minor change but it helps a little: [code]#content .content-pad { padding-top: 0; }[/code] Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
Rob 547 Report post Posted February 9, 2012 This too: [code].fboxtitle h3 { font-size: 1.3em; padding: 0 0 0; }[/code] The title of the box is creating an empty space as it's presently set to 0.5em, but using the code above will bring that to 0 and that will bring the boxes up. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
vetlaw 0 Report post Posted February 9, 2012 You guys are awesome. That's perfect. Thanks! Share this post Link to post Share on other sites