How can I add custom bullet points to my Dawn theme store?

Hi @FOP ,

1: Change the code again:

.product__description ul,
.section-template--14860766052484__main-padding ul,
.custom__bullet {
	list-style-type: none;
    padding-left: 0;
}
.product__description ul li:before,
.section-template--14860766052484__main-padding ul li:before,
.custom__bullet ul li:before {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    background-image: url(https://cdn.shopify.com/s/files/1/0585/6532/9028/files/Website_-_Bullet_1.png?v=1663252633);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 1rem
}

2: You just need to add class ‘custom__bullet’ at any ul you want to display, and it will work fine. For example:


- We are a plastic free market stall. We have a small amount of cotton shopping bags available for purchase, however we encourage you to bring your own reusable shopping bag.

Hope it helps!