Centering bullet points

What I’m trying to do

I need CSS that centers all my bullet points.

1 Like

Basically, a bullet point list which text block is aligned to the left, right, center ?

1 Like

Center

1 Like

Is CSS codes can be applicable in Obsidian ?

Like this?

/* source view */
.HyperMD-list-line.HyperMD-list-line-1.cm-line {
  left: 50%;
  right: 0;
}

/* live preview */
ul.has-list-bullet {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.