Here we go:
latest fastlane ....
open layout.css and find
#main_content_supp {
margin:0 0 20px;
padding:10px;
}
make it:
#main_content_supp {
padding:10px;
}
If you want to remove another 10px from the breadcrumb find:
#breadcrumb {
font-size:0.75em;
margin:10px 0;
text-transform:uppercase;
}
change it to
#breadcrumb {
font-size:0.75em;
text-transform:uppercase;
}
widopen
.blog {
margin-top:10px;
}
change to
If you want to remove more from the title you will have to go in the typorgraphy.css . All headers have the following code:
h1, h2, h3, h4, h5 {
margin:15px 0 10px;
}
Play with the margin to reach your goal. If you want that all of the headers have the above margin, but only h2 has a smaller one write a definition like this in typography.css after the above this code
h2{
margin: your specific height;
}
for the other gaps:
.leading_separator {
margin-bottom:20px;
width:100%;
}
to
.leading_separator {
margin-bottom:0;
width:100%;
}
And for the modules on the right:
.module, .module_menu, .module_text {
margin-bottom:20px;
}
to
.module, .module_menu, .module_text {
margin-bottom: the value you want;
}
Man I thought you like the template
And the second thing I thought was that nobody will have to change the layout widths and heights trough the backend, but obviously I'm wrong