Advertisement
Guest User

Untitled

a guest
Sep 6th, 2015
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <footer>
  2. <div class="container-fluid"> //Necessary?
  3. <div class="row"> //Necessary?
  4. <div class="col-md-12"> //Necessary?
  5. <ul class="nav navbar-nav" style="text-align:center;"> //Trying to adjust the style to center align
  6. <li class="dropdown">
  7. <a class="dropdown-toggle" role="button" aria-expanded="false" href="#" data-toggle="dropdown">Home <span class="caret"></span></a>
  8. <ul class="dropdown-menu" role="menu">
  9. <li>@Html.ActionLink("Item 1", "Index", "Home", protocol: null, hostName: null, fragment: "item1", routeValues: null, htmlAttributes: null)</li>
  10. <li>@Html.ActionLink("Item 2", "Index", "Home", protocol: null, hostName: null, fragment: "item2", routeValues: null, htmlAttributes: null)</li>
  11. <li>@Html.ActionLink("Item 3", "Index", "Home", protocol: null, hostName: null, fragment: "item3", routeValues: null, htmlAttributes: null)</li>
  12. </ul>
  13. </li>
  14. <li>@Html.ActionLink("About", "About", "Home")</li>
  15. <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
  16. </ul>
  17. </div>
  18. </div>
  19. </div>
  20. </footer>
  21.  
  22. <ul class="nav navbar-nav">
  23.  
  24. footer ul li {
  25. text-align:center;
  26. }
  27.  
  28. <div class="row" style="text-align:center;">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement