@socialspark I can help with this….Since the above conversation is dated back in early 2013 it’s safe to say they were using an older version of the theme. However, we can still get your menu to center in the version you’re using. If you have a look in your style.css near line 1630 you’ll see this –
.genesis-nav-menu .menu-item {
float: left;
list-style-type: none;
margin: 0;
padding: 0;
text-align: left;
}
Change the float: left
to none
and add display: inline-block;
. It should look like this when you add in those changes –
.genesis-nav-menu .menu-item {
display: inline-block;
float: none;
list-style-type: none;
margin: 0;
padding: 0;
text-align: left;
}
I tested this on your site and this was the result – http://i.imgur.com/Mg0KbTO.png

Let me know if you get it working.