The snippet example will replace the bullets from a list with custom Divi icon (love heart).
Go to the Divi Icon Code to get the code reference.
[html]
<!– HTML –>
<ul class="ico love">
<li>Item 1</li>
<li>Item 2</li>
</ul>
[/html]
[css]
/* CSS */
ul.ico {
list-style-type: none;
padding-left:0;
}
ul.ico li:before {
font-family: ETmodules;
padding-right: 8px;
font-size: 12px;
}
ul.love li:before {
content: "\e089";
color:#0c71c3;
}
[/css]
