When attempting to align my NavBar to the right, I noticed that using float:right caused it to shift to the right but become unresponsive.
Take a look here: goo.gl/46yUrt
Snippet of Code:
/**
* 4.2 Navigation
* ----------------------------------------------------------------------------
*/
.main-navigation {
clear: both;
margin: 0;
max-width: 100%;
min-height: 45px;
position: relative;
float:right;
}
The theme I am working with is a customized version of TwentyThirteen.
Preferably, I would like to have the menu positioned next to the logo at the top in a centered alignment.