If you would like to add Emojis to your Survey/ILP Questions then you need to add a little bit of HTML.
For example, this set of emojis
is created by using this html for the "options" within the question
<p style='font-size:50px; background-color: #008000'>😁</p>
<p style='font-size:50px; background-color: #BFD641'>🙂</p>
<p style='font-size:50px; background-color: #FFDE59'>😐</p>
<p style='font-size:50px; background-color: #FE9900'>🙁</p>
<p style='font-size:50px; background-color: #E4080A'>😞</p>
Breaking down one of these options
<p style='font-size:50px; background-color: #008000'>😁</p>
- wrap your emoji in the <p style=' and </p> which are a paragraph marker and will create spaces between them
- the font-size:50px; can be changed to make the emjoi larger or smaller
- background-color: #008000'> will change the colour of the square itself (see below)
- 😁 is the actual emoji code (see below)
- NOTE: The single quotes that are used. Do not user double quotes
Article ID: 63, Created: October 29, 2024 at 2:37 PM, Modified: October 29, 2024 at 2:37 PM