Skip to main content
December 31, 2014
Question

Bullet formatting - centred

  • December 31, 2014
  • 1 reply
  • 931 views
Does anyone know how to make bullets on centred text appear correctly?

At the moment, the bullets are left aligned, but the text is centred.
  • Here's an example of what I mean!
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

December 31, 2014
Have you tried editing the raw html?
(press HTML when you are in the WYSIWYG editor)

You can apply style="text-align: left;"

My guess is your code right now looks like this:

<ul style="text-align: center;">
   <li>Here's an example of what I mean! </li>
</ul>

Change (or insert) the style attribute for text-align to be left:

<ul style="text-align: left;">
   <li>Here's an example of what I mean! </li>
</ul>

This should fix the alignment of your bulleted items.