# vBulletin Emojis

**URL:** https://meta.discourse.org/t/vbulletin-emojis/22214
**Category:** Plugin
**Created:** [November 16, 2014, 5:13pm UTC](https://meta.discourse.org/t/vbulletin-emojis/22214 "2014-11-16T17:13:45Z")
**Posts on this page:** 1
**Showing post:** 25

<div class="post-metadata">

### Author: ![tom1984](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tom1984/32/528342_2.png) [@tom1984](https://meta.discourse.org/u/tom1984)
#### Post date: [November 5, 2025, 10:28am UTC](https://meta.discourse.org/t/vbulletin-emojis/22214/25 "2025-11-05T10:28:19Z")

</div>

thanks, just gave it a go and all is looking good with the inbuilt custom emoji functionality - all I had to do was create a plugin component to allow differnet sizes for emojis as described here: [Configure custom emoji](https://meta.discourse.org/t/configure-custom-emoji/23365?tl=en)

_" Resizing custom emoji_

_By default, all emoji are resized via CSS to 20x20, but this can be overridden with custom CSS. To maintain the correct aspect ratio and native size in posts, add the following CSS:"_

```plaintext
> /* Make emoji normal size (don't force square) */
> div.topic-post img.emoji[src*="uploads"], 
> div.d-editor-preview img.emoji[src*="uploads"], 
> div.emoji-modal img.emoji[src*="uploads"], 
> div.d-editor-textarea-wrapper img.emoji[src*="uploads"], 
> div.title-wrapper img.emoji[src*="uploads"], 
> td.main-link img.emoji[src*="uploads"] {
> width: auto;
> height: auto;
> }

```

and this is how to create a plugin component for custom css if anyone else stumbles across this post! (super easy, 2 min job)

> [@Making custom CSS changes on your site](https://meta.discourse.org/t/making-custom-css-changes-on-your-site/168101?tl=en):
>
> bookmark This guide explains how to make CSS changes on your Discourse site, including an introduction to CSS, where to add CSS in Discourse, and how to find the right selectors using browser inspection tools. person_raising_hand Required user level: Administrator Summary This guide covers: A brief introduction to CSS and key concepts How to add CSS to your Discourse site using theme components Using browser inspection tools to find the right CSS selectors Understanding CSS basics CSS…

Brilliant! It’s little things like this that give it the comfy custom feel 🙂

---

_[View the full topic](https://meta.discourse.org/t/vbulletin-emojis/22214)._
