Add category separation

insert the following into the EXTRA.CSS Template...

Code:
.nodeList .node.level_1 {
    margin-bottom: 20px;
    border-width: 0 1px 1px;
    border-color: green;
    border-style: solid;   
}
 
I just tested this on my site and the code above, the border on the left & right span up to the sides of the category. The following will span to the bottom of them if this is better suited for you.Same as above, paste in the EXTRA.CSS template

You could probably do with adding some padding-bottom: 10px; but the styling would be your preference.

Code:
#forums .nodeList {
    margin-bottom: 20px;
    border-width: 0 1px 1px;
    border-color: green;
    border-style: solid;   
}
 
Top Bottom