XF 1.4 Quick Reply border

Hello all,

Please see the attached image.

Quick Reply border.webp

I would like to remove the border around quick reply.

I removed 'border: 1px solid rgb(150, 150, 150);' from the code below, however this also removed the border from the message container (.messageList).

Code:
.quickReply
{   
    @property "message";
    padding: 5px 5px 30px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border: 1px solid rgb(150, 150, 150);
    @property "/message";
}


Any help would be appreciated.

Thank you.
 
You typically shouldn't alter anything that's between two @properties in CSS templates. That means there's a style property for it.

In this particular case, though, the style property gets too much. As you want only the quick reply area, give Brogan's CSS above a try.
 
Top Bottom