How Can We Help?
How to set max image size in a chat?
If you want your images showing in the chat to show in a specific size (so when clicked on, it will open in their original size), add a maximum size limit for images added to the chat conversation.
.message-text a img {
max-width: 200px !important;
max-height: 200px;
}
To know how to edit web CSS, click this link.