Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
In nodebb-v2, I used the following to adjust emoji's size (custom CSS). In nodebb-v3, it does not work. Any ideas?
.emoji { height:60px; }
Not sure exactly why this happened with v3 but you should be able to add !importantto make it work:
!important
.emoji { height: 60px !important; }
@PitaJ said in Emoji's size adjustment:
Not sure exactly why
That's what I think most of the time using !important
Now it works. Thanks.