After creating a bullet-point list in HTML, I centered the text and bullet points. However, when I center the text, the bullet points become staggered. Is there a way to keep the text in a straight line on the left while still centering it?
https://i.sstatic.net/YPrlu.png
My CSS code is below:
.l-section.wpb_row.height_auto.color_alternate {
text-align:center;
}
For centering bullet points:
.wpb_text_column p:last-child, .wpb_text_column ul:last-child, .wpb_text_column ol:last-child{
list-style-position: inside;
}