If you have your site navigation in ul, li elements and seeking to center align the items to the center of the screen, here is the quick css for that
ul.nav{ list-style-type:none; margin:0 auto; display:table; } ul.nav li{ list-style-type:none; display:table-column; float:left; }
About Bhupendra Kunwar