/ Published in: CSS
Change your list bullet to a custom character in CSS. Will not wrap it multiple lines
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
.patch-indv ul li { list-style: none; margin-bottom: 10px; text-indent: 0; } .patch-indv ul li:before { color: #00a4e3; content: '\2713 '; /* Check Mark */ font-size: 1.5em; font-weight: bold; margin-left:-20px; }