|
Peter
Edit the style.css using the presentation editor
Your problem is in the class post-meta
parameter margin-top
currently set as 1.6em
reduce to zero, or even negative to achieve the space you want
ie replace this
.post-meta {
margin-top:1.6em;
color:#999;
}
with this
.post-meta {
margin-top:0em;
color:#999;
}
or even this
.post-meta {
margin-top:-1.0em;
color:#999;
}
to get the gap you want
|