Time for action—Modifying lines in the center column
Open Firebug, and go to the element that you would like to edit.
The text in the preceding screenshot is the text you want to edit in terms of its margin, and padding. You will need to go to global.css and edit the text sixe, padding and bottom margin.
.editorial_block h2 { background: none; padding: 0; margin-bottom: 1em }
Tip
If it isn't stated whether it is the bottom or top margin, the margin values are shown according to
top right bottom left
.You can test how you want to change the margin and padding by increasing the value, by lowering the distance from top, and so on.
Try it, and if the outcome is suitable, you can save the changes and copy the new margin and padding value to your CSS file.
This is pretty simple!