Quantcast
Viewing all articles
Browse latest Browse all 293

How to Display Default Bullet List Symbols

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

Image may be NSFW.
Clik here to view.
fancy bullet list

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

Image may be NSFW.
Clik here to view.
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.


Viewing all articles
Browse latest Browse all 293

Trending Articles