Hi PWalberg,
The menu is floating on the left within reason. It is not a single object on that line and a simple use of ‘text-align’ property won’t do the trick. In order to center the navigation on this theme, try the following modifications:
.main-navigation ul {
text-align: center;
}
.main-navigation li {
float: none;
display: inline-block;
}
.site-header .search-form {
display: none;
}
Thank you thank you thank you. Perfect.
And thanks for the awesome themes too, by the way!