Text gets center align but not the bullet point.
Below is the code from source editor.
<ul>
<li style="text-align: center;">text</li>
<li style="text-align: center;">text 2</li>
<li style="text-align: center;">text 3</li>
</ul>
Solved! Go to Solution.
Views
Replies
Total Likes
Hello @swarnago -
.centered-bullets {
list-style-position: inside;
text-align: center;
}
<styles>centered-bullets</styles>
It looks like ootb you cannot center the list but only the text individually as you mentioned, you can either add a custom style to achieve this or you can add a hyphen in the text as a workaround and drop the usage of the list element, something like this:
Hello @swarnago -
.centered-bullets {
list-style-position: inside;
text-align: center;
}
<styles>centered-bullets</styles>
Views
Likes
Replies
Views
Likes
Replies