How To Customize Bullet List and Numbered List in Blogger Blogspot

bullet-number-list-customizBullet listWhen you write a post, you have some type of thing that you can write in each line separately or A bullet list is used to indicate the following points by adding a dot.Numbered List

When you write someone’s information in more than one number, then using numbered list can be made easier.

How to Customize

  • First you open your blogger theme in HTML mode.
  • Paste the code below into the CSS section.
.main-inner .widget .post-body ul {
  padding: 0 2.5em;
  margin: 5px;
  margin-top: 0px;
  list-style: disc;
}
.main-inner .widget .post-body ul li {
  padding: 0.0em 0;
  margin-bottom: .25em;
  color: $(body.text.color);
  border: none;
}
.main-inner .widget .post-body ol {
padding: 0 2.5em;
  margin: 5px;
  margin-top: 0px;
}
.main-inner .widget .post-body ol li {padding: 0 2.5em;
  margin: 5px;
  margin-top: 0px;
}
  • Now click on SAVE THEME.

Watch Video