For some reason when I’m using bullet points the format goes all wrong and makes the text go to the left of the screen. Any help?
For some reason when I’m using bullet points the format goes all wrong and makes the text go to the left of the screen. Any help?
Try adding this to the Styling section of your template:
ul {
display: inline-block;
text-align: left;
}
ol {
display: inline-block;
text-align: left;
}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.