I\'m not able to align a menu, contained within a ul, to the horizontal center of its container. how to do that?
ul
See a live demo of the menu on jsFiddle.
Change the margin on the to 0 auto and give it a width (~575px or larger).
0 auto
jsFiddle example
ul { font-family: Arial, Verdana; font-size: 14px; margin: 0 auto; padding: 0; width:600px; list-style: none; text-align: center; }