Page 1 of 1

Space between entries

Posted: Tue Dec 26, 2006 12:07 am
by tkarp
What determines the vertical space between successive entries?

I looked in entries.tpl and style.css, but couldn't find it.

Right now, it's running at about 125 pixels and I'd like to tighten it up a little.

Re: Space between entries

Posted: Tue Dec 26, 2006 4:11 am
by yellowled
tkarp wrote:What determines the vertical space between successive entries?
I guess in your case it's:

Code: Select all

.serendipity_Entry_Date {
    background-color: #fcfcfc;
    margin-bottom: 7em;
    border-bottom: 1px solid #d6d6d6;
}
And yes, 7em is a tad much :wink: I'd suggest something like maybe 2em.

YL

Posted: Tue Dec 26, 2006 4:45 pm
by tkarp
Thanks. That did the trick.