PDA

View Full Version : How to separate activity stream posts


sv1cec
11-25-2013, 03:00 PM
Is there a way to add a line under each entry in the Activity Stream, to separate it from the one below? So far, the only thing I've managed to do, is to add a border around each entry, but it looks kind of silly in that way.

You may have a look here:

http://forum.m1911.org/activity.php

I would prefer if I could add a simple <hr> there, but that means changing all the activity templates.

Lynne
11-25-2013, 04:16 PM
You have:
li.activitybit {
...
border:1px solid #000000;
...

Just add this to additional.css:
li.activitybit {
border: none;
border-bottom:1px solid #000000;
}

sv1cec
11-25-2013, 04:31 PM
You are a life saver! Thank you!