XF 2.3 Reactions

I am looking at adding my own Reactions but the image is always too big what is the file size for the Reactions
The default sizes are defined:

CSS:
.reaction-image.reaction-image--emoji {
    width: 32px;
}

.reaction--small .reaction-image {
    max-width: 16px;
    max-height:16px
}

.reaction--medium .reaction-image {
    max-width: 21px;
    max-height:21px
}

They should appear at these sizes for the various locations when used in the forum, although in the reactions menu in ACP they appear at their actual size.

Of course you can override those default sizes in extra.less template.

I found when adding my own images, best to make them bigger than display size to look best, mine are 64px so twice the size of the largest size for best display on retina screens.
 
Last edited:
Back
Top Bottom