Bullet formatting - centred

Anonymous
Not applicable

Bullet formatting - centred

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!
Tags (1)
1 REPLY 1
Anonymous
Not applicable

Re: Bullet formatting - centred

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.