Navigation issue

Permalink
I recently purchased the ALPHA theme and everything was very straight forward as far as customizing it goes accept for one thing. I can't for the life of me figure out why the navigation is pushed over to the right had side. I don't see any padding, margins, or positions anywhere in the style sheet that would cause this.

http://www.bigdco.com/

Any help on this would be appreciated.

Thank you.

getjoel
 
ronyDdeveloper replied on at Permalink Best Answer Reply
ronyDdeveloper
The div has some class which needs to be removed and altered.

<div id="ff-header-nav" class="small-12 large-12 columns ff-valign" style="margin-top: 0px;">


it has push-4 and large-8 class previously. Now I removed push-4 class and make the large-8 to large-12.

Rony
planist1 replied on at Permalink Reply
planist1
It might be the:
.push-4 {
left: 33.3333%;
position: relative;
right: auto;
}
in the foundation.min.css file

might try changing the 33.3333% to 0px to move it back to the left.
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
I don't think that its a good idea to change any css framework as it can cause other problems to the site.

Rony