What I’m trying to do
I need CSS that centers all my bullet points.
Basically, a bullet point list which text block is aligned to the left, right, center ?
Center
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;
}
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.