John John
John John

Reputation: 1

How to modify the default asp.net mvc css to have the menu item starting from left

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;   

    } 

enter image description here

Upvotes: 0

Views: 548

Answers (1)

Nitin Agrawal
Nitin Agrawal

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.

enter image description here

Upvotes: 2

Related Questions