By default our themes (both Free and Premium) comes with more fancy bullet symbol for unordered list:

But you may want to switch to the default symbol for unordered lists:

It will require adding a small piece of CSS into Customizer. Here is how to implement it:
- Login to your Admin Panel
- Navigate to Left Menu -> Appearance -> Customize -> ‘Additional CSS’ Section
- Insert the following code:
article ul > li:before,
#sidebar ul > li:before {
content:none;
}
article ul > li,
#sidebar ul > li{
list-style-type: disc;
}
and Save changes by clicking on ‘Publish’ button.