XF 1.5 One User has their post sidebar minimised.

Hey all.

I noticed recently that one of my users has their profile sidebar minimised, if you hover a cursor over it, it shows as normal.

I've searched the admin panel in an attempt to find a setting (in either the user group or in the users own settings, or custom user settings) and my search has come up empty.

No other user is having this issue, only "AutoMod" (a small personal project I'm working on :P )

Any help would be appreciated, I've attached a screenshot of before and after hovering over the profiles.

Thanks
 

Attachments

  • Before hover.webp
    Before hover.webp
    2.1 KB · Views: 4
  • after hover.webp
    after hover.webp
    8 KB · Views: 4
I see the below CSS being loaded on that user's mesageUserBlock element so I can only assume you have other CSS transitioning the extra user info element to show on hover.

Code:
.postbotMessage .messageUserBlock:not(:hover) {
    float: right;
}
 
Top Bottom