Changing the margin setting on the ul, like this:
#pages ul {
width: 650px;
list-style-type: none;
list-style-image: none;
float: left;
padding: 0px 0px 0px 6px;
margin: 0px auto;
}
Should work.
Main Topics
Browse All TopicsHi, i would want center in my page a <ul> menù provided by <?php wp_list_pages (.... )>
#PHP code:
<div id="pages">
<ul>
<?php wp_list_pages('title_li=')
</ul>
</div>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
These explain one way to center a variable width menu:
http://www.search-this.com
http://matthewjamestaylor.
Here's a second way:
http://www.dynamicsitesolu
Maybe this is useful for you i'm using this on my website www.bmwvideopost.com, in order to center the UL you need to put it in a surrounding div and the UL needs a width of you want to center it with margin: auto;.
Something like this:
<div id="pages"> width: 800px;
<ul> width: 500px; and margin: auto
<li>pages</li>
</ul>
</div>
Hope this helps you out.
Business Accounts
Answer for Membership
by: arman_profPosted on 2009-05-10 at 08:21:36ID: 24348678
Please clarify if you want to center the menu or menu texts within blocks?