Appearance of bullet points in list

  • we have created a list with bullet points which when creating appears as a dot but when we preview or publish, it appears as a star. how do we change so that when publishing it stays as a dot?

    The blog I need help with is: (visible only to logged in users)

  • The Vigilance theme styles bullet lists with stars as part of the theme’s design. To override that and make them plain bullets, try adding this to your custom CSS in the Customizer:

    .entry ul li, .c-body ul li {
      background: none;
      display: list-item;
      list-style: disc outside none;
      margin: 5px 0 0 10px;
      padding: 0 0 0 5px;
    }
  • The topic ‘Appearance of bullet points in list’ is closed to new replies.