Hi there.
The stylesheet located here –> /wp-content/themes/mystile/styles/grey.css
contains an ID called #navigation.
Here is the complete ID here
#header #navigation {
float: right;
clear: none;
border: 0;
background: 0;
-webkit-box-shadow: none;
box-shadow: none;
width: auto;
}
All you need to do is change the property on float from “right” to “left” so it will look like this
#header #navigation {
float: left;
clear: none;
border: 0;
background: 0;
-webkit-box-shadow: none;
box-shadow: none;
width: auto;
}