Dylan

Customer
Hi,

How can I make a small separation between two forums? I'd like a separation to a specific location:

Screenshot_1.png


It seems to me that this is possible with the id of the forum, but I don't have the solution.

Thanks.
 
What you screenshotted has a divider for the stickies.

You could achieve the same effect I suppose with:

Code:
.node_2 { border-bottom: 10px solid #000; }

Getting it exactly like the screenshot would require some conditionals and html css.
 
What you screenshotted has a divider for the stickies.

You could achieve the same effect I suppose with:

Code:
.node_2 { border-bottom: 10px solid #000; }

Getting it exactly like the screenshot would require some conditionals and html css.
I managed to separate the two forums, but I'd like to put a background between the two borders:

Screenshot_1.png

Code:
.node_27
{
    margin-bottom: 10px;
    border-bottom: 3px solid rgb(98, 151, 13);
}

.node_31
{
    border-top: 3px solid rgb(98, 151, 13);
}
 
It's fixed, Russ:

Screenshot_1.png

Instead of using a background, I used a border:

Code:
.node_27
{
    border-bottom: 10px solid #f1f1f1;
}

.node_31
{
    border-top: 1px solid rgb(229, 229, 229);
}
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back