XF 2.3 Sticky user info (avatar)

dave3

Active member
Hi,

I have seen it already on some forums but I cannot find any addon or css solution for it. I am looking for sticky user info in thread view so that the left side is moving up/down while scrolling the thread.

1743247364016.webp

Greetings
 
Solution
I have seen it already on some forums but I cannot find any addon or css solution for it. I am looking for sticky user info in thread view so that the left side is moving up/down while scrolling the thread.
Code:
@media (min-width: @xf-responsiveMedium) {
    .message-user {
        position: -webkit-sticky;
        position: sticky;
        top: 10px;

        .message-userArrow {
            right: -11px;
        }
    }
}

Or https://xenforo.com/community/resources/cxf-sticky-postbit.9572/
I have seen it already on some forums but I cannot find any addon or css solution for it. I am looking for sticky user info in thread view so that the left side is moving up/down while scrolling the thread.
Code:
@media (min-width: @xf-responsiveMedium) {
    .message-user {
        position: -webkit-sticky;
        position: sticky;
        top: 10px;

        .message-userArrow {
            right: -11px;
        }
    }
}

Or https://xenforo.com/community/resources/cxf-sticky-postbit.9572/
 
Solution
Back
Top Bottom