How to change the bullet "•" in a list item

Hi! How can I change the ‘bullet’

  • <- this one

For the short code [x_icon type=“check”] in cornerstone?

Hi there,

If you are using the HTML code for the list items, please add a class to the ul element like this:

<ul class="check">
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>

Then add this code to the Global CSS:

ul.check {
    list-style:  none;
}

ul.check li {
    position: relative;
}

ul.check li:before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    top: 2px;
    left: -20px;
}

If you want other ul to have the checkmark instead of the default bullet icon. just add the check class to the ul element.

Hope this helps.

2 Likes

Worked!! Grazie mille!

Sei piu 'che benvenuto!
È bello sapere che ha funzionato per te.