since you have custom template , your designer has chained many elements together .. although code block from before dose the job , but is effecting some other part .. you can still adjust elements there but you can also try following.. back up your stylesheet.css and try this example ..
locate following in your CSS
h1, h2, h3, h4, h5, h6, .wrapperAttribsOptions {stylesheet.css (line 1108)
margin:0.3em 0;
}
break this code block into two.so that block of code will become two block of code
like this
h1, h2, h3, h4, h5, h6 {
margin:0.3em 0;
}
and
.wrapperAttribsOptions {
margin:0.3em 0;
}
here , set the margin to 0.1 em and that should get things closer ..
also don't forget to change the line height on other posting back to 1.2em




