XF 2.0 Thread view changed from XF1: How can i bring back the good old one?

3rd AnGle

Well-known member
Please help me in getting the old style of having each posts in a thread continuously without any gaps and blocks.

This is with the gaps
gap1.webp

This is what i want to achieve
no gap1.webp


Can anyone provide the CSS codes to hide this gap?

Thanks
 
Adding:
PHP:
.message { margin: 0 !important; }
to extra.less should do what you want.
Super. You sir have done it.

Thank you

There was an overlap of the bottom border so i ended up with this hack

Code:
.message { margin: 0 !important;
    border-bottom-color: #FFFFFF !important;
    border-radius: 0px !important; }
 
  • Like
Reactions: AWS
Top Bottom