Reputation: 110
Working on this site: http://tinyurl.com/nutvfvb
Just want to know how to get the mobile nav centered. I had to move the menu on desktop over a few pixels, but it looks funny on my iPhone and iPad. Any thoughts on how to adjust that via CSS?
Upvotes: 0
Views: 56
Reputation: 302
Try this
@media only screen and (max-width:960px){
.navigation-wrapper{margin-left:0px;}
}
This will make sure at the desktop size it keeps your navigation bar looking the same but once you drop down to a lower screen resolution it will remove that -margin and allow your margin:0 auto
to kick back in and center the element
Upvotes: 1