Hi mas0n,
Thanks for the link to your site. Since you didn’t specify which areas you wanted to reduce the spacing for, I’ll use my best judgement. You can enter your custom CSS in your Launchpad settings area.
Reduce the padding at the top and bottom of the page:
body {
padding: 30px 60px;
}
Reduce the space between your tagline (just below your logo) and the subscribe box:
#header-container {
margin-bottom: 20px;
}
Reduce the space between your social icons and the copyright line below:
#content-container, .social {
margin-bottom: 20px;
}
Reduce the space between the subscribe box and the border below it:
.subscribe-form {
margin-bottom: 20px;
}
Reduce the space between the timer and the borders above and below it, and reduce the space between the bottom border and the social icons:
.timer {
padding: 20px 0;
margin-bottom: 20px;
}
If you want to decrease the spacing in any of those areas a bit more, you can decrease the pixel value given. Let me know if there’s anything I missed that you want to change.
Hope this helps!
Christi