Special Offer: Get All 151 Premium WordPress Themes for Just $99.99 $59.99 Purchase Now Learn more

How to Display Default Bullet List Symbols

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

fancy bullet list

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

default bullet list symbol

It will require adding a small piece of CSS into Customizer. Here is how to implement it:

  1. Login to your Admin Panel
  2. Navigate to Left Menu -> Appearance -> Customize -> ‘Additional CSS’ Section
  3. 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.