contacts

Buy All 98 Premium WordPress Themes for $59.99
No Additional Fees, Pay Once and Use Unlimited Time for Unlimited Domains, Free Lifetime Updates

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.

Leave a Reply