To center the content of the entire navbar, (centering both the brand and links)..
.navbar .navbar-header,
.navbar-collapse {
float:none;
display:inline-block;
vertical-align: top;
}
@media (max-width: 768px) {
.navbar-collapse {
display: block;
}
}
http://www.codeply.com/go/1lrdvNH9GI
If you want to center only the links, see this question:
Center content in responsive bootstrap navbar