I want to be able to center the nav dead middle of a page and have it stayed centered in different resolutions. I don\'t want to use offsets to push it over or margin-left a
You can make the .navbar fixed width, then set it's left and right margin to auto.
.navbar
auto
Demo
.navbar{ width: 80%; margin: 0 auto; }