Customize ::marker -> Make the list dots smaller squares

Does anyone know if there is a way to make the dots in a list, smaller squares?

Hi @Issyeissue

Is this from collapsible content on the product page?

If it is check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.accordion__content ul {
    list-style-type: square !impportant; 
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

It worked by adding it as: list-style: square;

Do you also know how to reduce the size of the square?

Sorry wrong spelling. Check this one to reduce.

.accordion__content ul {
    list-style-type: square !important; 
}

.accordion__content ul li::marker {
    font-size: 8px; 
    line-height: 1;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thanks mate! It worked