XF 2.2 removing vertical bar from replies

mscice

Member
Licensed customer
Hello everyone, i would like to remove the horizontal bar form all replies... image attached what i really wanna do, anyone know how to do this?

much thanks!
 

Attachments

  • Screenshot 2024-01-16 at 12.21.31.webp
    Screenshot 2024-01-16 at 12.21.31.webp
    33.9 KB · Views: 37
Should be possible reducing the border-left attribute. I'm not on PC so cannot use an element finder. Possibly .messageText .bbCodeQuote
 
when your back at pc can you give me the exact syntax please ... does this go to extras css?
Code:
.bbCodeBlock {
border-left: 3px solid hsl(var(--xf-borderColorAttention));
}
is what is shown in the code inspector.
You may be able to fine tune the specificity with .message-body .bbCodeBlock.
 
Back
Top Bottom