XF 2.2 colors for the page break lines

ScooBySnaCk-TW

New member
Rather than removing the line breaks I figured it would be just as easy to make them the same color as the background but I am not sure where they are located.

So basically the first line down and the line above the signature block:
1714428037309.webp
 
Try this in extra.less

Code:
.message-attribution
{border-bottom:1px solid @xf-contentBg}
//above the signature
.message-signature
{border-top:1px solid @xf-contentBg}

or else you could use display:none rather than the border color

I don't know what the line is above the quote could be a horizontal rule in which case

Code:
.bbWrapper hr
{border-top:1px solid @xf-contentBg}
 
Top Bottom