How to Turn List Bullets into Icons or Emoji

Want to spice up a boring list on your website? Just use this handy guide to turn list bullets into any icon or emoji!

Watch this video for precise instructions and crucial tips!

Custom CSS to turn a regular list into an “icon” list

If you’re using Focus, try the SCSS code below. Otherwise, use the basic CSS.

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?

Choose an icon or emoji that matches the vibe of your offer!

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).

~ โ€ขโ€ขโ€ข ~

The Internet has changedโ€”has your site changed with it?

Follow my free 4-step roadmap to run a simple and fast website that:

  • Looks great everywhere
  • Delights your visitors
  • Saves you money

Enter your email below, and I’ll send you my free, 4-step guide to build a fast website your visitors will love: