corner image corner image
View Single Post
corner image corner image
  #2 (permalink)  
Old 19-06-2008, 21:06
admagic's Avatar
admagic admagic is offline
I Live on A1!
 
Join Date: Mar 2008
Posts: 838
Thanks: 120
Thanked 467 Times in 271 Posts
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
Reply With Quote
corner image corner image
The Following User Says Thank You to admagic For This Useful Post:
Peter W (19-06-2008)
corner image corner image