Reputation: 1
I have created a new asp.net mvc 4 web application. but the current main menu, which contain the following links "Home" "About" "Contact" is showing at the right-side of the screen. so how I can change the float to be left instead of right ? I tried the following but it did not work:-
/* menu */
nav {
margin-bottom: 5px;
clear: both;
float: left;
}
Upvotes: 0
Views: 548
Reputation: 1361
If u notice in _sitelayout.cshtml, ur nav is in div with class float-right. Change it to float-left. Also in ur css, check for ul#menu has property text-align : right; remove this property. See below screen shot after the changes.
Upvotes: 2