There is a 70 px top margin on every single post or content showed on the screen followed by a smaller gap between the post title and the post content. Both of them can be adjusted in the style.css file
edit the following settings:
Content Top margin. I figured out i like it at about 3-4 px… no more.
Space between the right slider and the content body as well as the slider width in percentage. I reduced them both a little.
/* 19.0 Sidebars
================================================== */
#secondary {
float: left; padding-left: 15px; width: 25%;
}/* 20.0 Post
================================================== */
.entry-header {
padding-bottom: 10px;
Padding between the title and the content. For my taste, reduced half way.
/* 24.0 Pages
================================================== */
/* —– Page Title —– */
.page-header {
padding: 0 0 30px;
position: relative;
overflow: hidden;
}
.error-404 .page-header {
padding: 15px 20px 50px;
margin-top: 0px;
background-color: #fddbdd;
}
Margin above the main menu in the top header. Reduced to 10 for my usage
Margin above and under the site description in the top header, useful if you put no site title and use the description field as a greeting message. Reduced to 15px for my usage
Spacing at the right of the page, increase by 5% increment to stretch the content part so the gap on the right goes low.
LEFT MARGIN can be added for when the resolution is low. in this case, the content text is aligned full left leaving no gap at all between the screen border and the text. Value must be given in percentage, and each percent you add to the margin, should be substracted to the width as shown below. Must totalize a 100% with the slider width as shown above, set at 25%.
/* 18.0 Content
================================================== */
#content, .search #content {
padding: 4px 0 30px;
}
#main ul {
list-style-type: disc;
}
#main ol {
list-style-type: decimal;
}
#main ol ol {
list-style: upper-alpha;
}
#main ol ol ol {
list-style: lower-roman;
}
#main ol ol ol ol {
list-style: lower-alpha;
}
#primary {
float: left; width: 73%; margin-left: 2%;
}
Centering the article title with the body left line,
edit the padding like this, adjust the percentage of the last value.
Header menu, contact information adjustments, slightly bigger text and moved 2% from the left border of the screen to align with the rest of the blog on low resolutions. position adjusted upwards with -2px.