Want to spice up a boring list on your website? Just use this handy guide to turn list bullets into any icon or emoji!
Custom CSS to turn a regular list into an “icon” list
First, you need to add some Custom CSS to your website so you can transform any list into something more visually excitingโwith icons or emoji for bullets!
SCSS Version
ul.checklist { list-style-type: none; margin-left: 0; li { padding-left: ($x3 + $x6); &:before { content: '\2713'; color: red; display: inline-block; width: ($x3 + $x6); margin-left: -($x3 + $x6); font-family: inherit; font-weight: normal; } } }
Basic CSS Version
ul.checklist { list-style-type: none; margin-left: 0; } ul.checklist li { padding-left: 23px; } ul.checklist li:before { content: '\2713'; color: red; display: inline-block; width: 23px; margin-left: -23px; font-family: inherit; font-weight: normal; }
Note: If you’re using basic CSS, you may want to play with the 23px values to see what looks best. If you’re using Focus and SCSS, your values will always adjust to work perfectly with your selected font and font size!
Which icon or emoji do you want to use for your bullets?
Replace the content
property in your CSS with the proper value for your desired icon. I’ve prepared a list of some of the most appropriate checkmarks and bullet-style icons for you to peruse below:
Checkmarks
- ✅
\2705
โ check mark button - ✓
\2713
โ check mark - ✔
\2714
โ heavy check mark - ☑
\2611
โ checkbox with check
Arrows & Pointers
- 👉
\1f449
โ right-pointing backhand index - โ
\2192
โ rightwards arrow - โ
\21d2
โ rightwards double arrow - ▶
\25b6
โ black right-pointing triangle - โท
\25b7
โ white right-pointing triangle - โธ
\25b8
โ black right-pointing small triangle - โน
\25b9
โ white right-pointing small triangle - โบ
\25ba
โ black right-pointing pointer - โป
\25bb
โ white right-pointing pointer - โ
\261e
โ white right-pointing index - โ
\2794
โ heavy wide-headed rightwards arrow - โ
\2799
โ heavy rightwards arrow - โ
\279b
โ drafting point rightwards arrow - โ
\279c
โ heavy round-tipped rightwards arrow - โ
\279d
โ triangle-headed rightwards arrow - โ
\279e
โ heavy triangle-headed rightwards arrow - โ
\279f
โ dashed triangle-headed rightwards arrow - โ
\27a0
โ heavy dashed triangle-headed rightwards arrow - ➡
\27a1
โ black rightwards arrow - โข
\27a2
โ 3D top-lighted rightwards arrowhead - โฃ
\27a3
โ 3D bottom-lighted rightwards arrowhead - โค
\27a4
โ black rightwards arrowhead - โฅ
\27a5
โ heavy black curved downwards and rightwards arrow - โญ
\27ad
โ heavy lower right-shadowed white rightwards arrow - โฎ
\27ae
โ heavy upper right-shadowed white rightwards arrow - โฏ
\27af
โ notched lower right-shadowed white rightwards arrow - โฑ
\27b1
โ notched upper right-shadowed white rightwards arrow - โณ
\27b3
โ white-feathered rightwards arrow - โต
\27b5
โ black-feathered rightwards arrow - โธ
\27b8
โ heavy black-feathered rightwards arrow
Want to change the color of your icons?
Simply replace the red
color in the CSS provided above with your desired color. You can use any type of color value you want (color names, hexadecimal, RGB, or HSL).