NickMo1
I check deeper on this and it turns out that the midCol padding top is controlled by less:
// Content
#midCol {
padding-top: @line-height-computed;
}
in the file: /templates/buildr/less/layout.less
The @line-height-computed variable is defined in the file: /templates/buildr/less/variables.less
@line-height-computed: @font-size-base; // ~20px
as you can see it inherit value from @font-size-base variable
// Font sizes
// -------------------------
@font-size-base: 14px; // 15 (px) default;
I guess the font-size-base variable on your site is set with bigger value so if you don't want to change this font-size-base, you can edit the value:
// Content
#midCol {
padding-top: @line-height-computed;
}
for example: padding-top: 0;
in the file : /templates/buildr/less/layout.less