XF 1.5 Remove Avatar from Quick Reply

Amaury

Well-known member
I'd like to remove the avatar from the quick reply editor and then extend the editor to fill that space.

Editor.webp

How could I accomplish this? Thanks!
 
I'm on my phone but you can try
Code:
.Responsive .quickReply .messageUserInfo
    {
        display: none;
    }

    .Responsive #QuickReply
    {
        margin-left: 0;
    }

Looks like you have the avatar on the right? Probably need to change the above margin-left to margin-right.
 
Top Bottom