Foundation-sites: Bullets won't center align in Chrome and IE9/IE10

Created on 4 Apr 2013  ·  3Comments  ·  Source: foundation/foundation-sites

It's weird, but here goes...

When I use 'text-align: center' for any bulleted list (UL, OL), the text is center aligned but the bullets are not. Here's the test link http://www.crevolve.com/testing/ .... Any help is much appreciated...

Most helpful comment

Well it looks like the Foundation css needs the css below added to it.

Fix:

li {
    list-style-position: inside;
}

All 3 comments

Well it looks like the Foundation css needs the css below added to it.

Fix:

li {
    list-style-position: inside;
}

Thank you @emilhem . This fixed it! I added it to y own stylesheet, though. Now, atleast the rest I can tweak on my own. Thanks a lot!

yes.. it worked.. Thank you..

Was this page helpful?
0 / 5 - 0 ratings