[Style] Colour of line splitting forum posts

jacko

Well-known member
How can I change the color of the line that splits (divides) forum posts in thread view?
 
Go into the message.css and locate: border-bottom: 1px solid insert preference.

Code:
.messageList .message
{
    border-bottom: 1px solid @secondaryDarker;
    
    /*margin: 10px auto;
    padding-bottom: 20px;*/
    
    /* note this change does offset quote/bbcode boxes by their top margin... maybe that doesn't matter? */
    padding-top: 10px;
    padding-bottom: 30px;
}
 
Top Bottom