|
Im no css expert....but I think a kludge will work
by putting in a margin-bottom on class post-entry as -1.0 em
ie
eg replace
.post-entry, .archives {
font:1.3em/0em 'Century Gothic', 'Lucida Grande', Verdana, Arial, Sans-Serif;
}
with
.post-entry, .archives {
font:1.3em/0em 'Century Gothic', 'Lucida Grande', Verdana, Arial, Sans-Serif;
margin-bottom: -1.0em;
}
Adjust the bottom margin to suit...
If that doesnt work...I give up
|