Experience League
Community
Discussions
Ideas
Community Blogs
Community Advisors Page
Marketo User Groups (MUGs)
Support
Marketo Support
Knowledgebase
Measure Support
Product Documentation
Developer Portal
Training
Deutsch
✔
English
✔
Español
✔
Français
✔
日本語
✔
Português
✔
Sign In
Bullet formatting - centred
Topic Options
Subscribe to RSS Feed
Mark Topic as New
Mark Topic as Read
Float this Topic for Current User
Bookmark
Subscribe
Printer Friendly Page
Anonymous
Not applicable
12-30-2014
05:03 PM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
12-30-2014
05:03 PM
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)
Tags:
administration
All forum topics
Previous Topic
Next Topic
1 REPLY
1
Anonymous
Not applicable
12-30-2014
05:11 PM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
12-30-2014
05:11 PM
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.
Post Reply