Hi Os,
1) Not as standard, it would require code being added to a few files. If you want to add more, my advice would be to do it through custom classes. So for the full width text block, set the alt-bg to none, then add a custom class, i.e. “fw-blue”. Then add the following custom css:
.full-width-text.fw-blue {
background: blue;
}
.full-width-text.fw-blue * {
color: #fff;
}
.full-width-text.fw-blue:after {
border-top-color: blue;
}
2) Not really, they are responsive, but have a padding at the top and bottom, and aren’t designed for main images.
3) You can see here, scroll down to “Responsive utility classes” – http://twitter.github.io/bootstrap/scaffolding.html
4) You can add the following to the custom css box in theme options:
.page-heading {
padding-top: 20px;
padding-bottom: 20px;
}
Hope that helps.
– Ed