Currents + Tags as a whole?

Jan 12, 2012 21:40

Hi all,

Is there a way to move the entire currents/tags section down? As in, the entire bottom half of a journal entry after the entry itself is complete. I don't like how the entry looks in my journal when it ends right on top of the tags.

Ideally, to fix this, I would just add a margin above the .ljtags section, like so:

.ljtags {
color: #eeeeee;
padding: 5px;
margin-top: 10px;
background-color: #8A515A;
}

While this works on my entries, since I always tag my entries, it doesn't work on my friends list. If someone on my friends list posts without tags, the code used close the gap between tags and currents:

/*targets the currents as a block rather than individually Negative margin to close gap between currents and tags*/
.currents{
margin-top: -30px;
background-color: #8A515A;
padding: 5px 5px 5px 5px;
}

makes the post run into the currents. And I can't add a margin above the currents, like so:

.currents {
width: auto;
margin-top: 10px;
padding: 5px 5px 5px 5px;
color: #eeeeee;
}

because then that would take away my attempt to close the gap between the tags and the currents when someone posts with both!

Hopefully that makes sense.

Can anybody help? Thank you :)

solved, tags, entries, paid accounts

Previous post Next post
Up