How do you turn a plain-looking SharePoint bullet point list like this:
and make it look like this:
-
Go to the page where you have your bullet point list.
NOTE: If you have several pages, this means you need to repeat these steps for each page -
Edit the page
-
At the top of the page, insert a new app called “Embed Script or Code”
-
Click the [Edit script] button
-
Add the following code in the [Embed] window
<style>
ul {
list-style: none !important;
padding: 0;
}
li:before {
content: "\f058"; /* FontAwesome Unicode for circle checkmark*/
font-family: FontAwesome;
display: inline-block;
margin-left: -1.3em;
width: 1.3em;
color: #ee0e42 !important; /* checkmark color */
}
</style>
-
Change the highlighted color Hex to any color you like
-
Click [Save] and publish the page.
-
Repeat steps 1-7 for other pages where you might want to update this