petegarnish 0 Report post Posted March 11, 2011 I'm looking to remove the space between the feature slideshow, feature boxes, main content and morefoot panels on the site. Take a look and you'll see what I mean: www.productionvideo.com.au/index.php The background is visible between each 'panel' I've tried this without cufon fonts, however it makes no difference. Thanks Pete Share this post Link to post Share on other sites
catrina 103 Report post Posted March 11, 2011 Add this CSS: #contentborder, #morefoot {margin-top: -15px;} Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
petegarnish 0 Report post Posted March 17, 2011 Thanks Catrina, It seemed to work for the main content but not for the morefoot and full width widget. here's what I have in my custom CSS: body #subhead, #contentborder, #fullwidth_bottom_widgets, #post-footer, #morefoot {margin-top: -15px;} body #feature{height:320px} color: #ffffff Thanks Pete Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted March 17, 2011 Use Firebug to discover and remove the other margins, padding: http://www.pagelines.com/docs/changing-colors-fonts http://www.w3schools.com/css/ Thanks, Bryan Share this post Link to post Share on other sites
petegarnish 0 Report post Posted March 17, 2011 Thanks Bryan, I have used firebug to identify the #fullwidth_bottom_widgets and as you can see have added to the custom CSS, however it doesn't remove the space. Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted March 17, 2011 ` body #fullwidth_bottom_widgets{margin:0} body #morefoot{margin-top:0} ` That should do it for you. Thanks, Bryan Share this post Link to post Share on other sites
petegarnish 0 Report post Posted March 17, 2011 Thanks Bryan, I appreciate you taking the time with this. FYI here's what I've ended up with and it's working: body #subhead, #contentborder {margin-top: -15px;} body #morefoot{margin-top:-15px} body #fullwidth_bottom_widgets{margin:0} Share this post Link to post Share on other sites