Use list-style properties to customize the appearance of bullets and numbers.
Source Code
ul.custom-bullets {
list-style-type: square; /* Other options: circle, disc, none */
}
ol.custom-numbers {
list-style-type: upper-roman; /* Other options: lower-alpha, decimal, none */
}