XF 2.1 Make a style separation between sticky and nonsticky threads

iadzemovic

Member
Licensed customer
I am looking to add style in between the stycky and non-sticky threads. For example, a thicker border below the sticky that shows clear separation.
 
Hello,

You can do that via CSS or an add-on :


Regards, SyTry
 
Some styles have properties to separate the stickies (ours do for example).

You can also add some simple CSS in extra.less to add a thick border:

Code:
.structItemContainer-group.structItemContainer-group--sticky {
    border-bottom: 3px solid rgb(24, 88, 134);
}
 
Back
Top Bottom