Skip to content

Commit

Permalink
Fixes CSS for the menu so it is compatible with the default MVC5 temp…
Browse files Browse the repository at this point in the history
…late.
  • Loading branch information
NightOwl888 committed Jun 4, 2014
1 parent 02235dc commit 5afcf29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<%@ Import Namespace="System.Web.Mvc.Html" %>
<%@ Import Namespace="MvcSiteMapProvider.Web.Html.Models" %>

<ul id="menu">
<ul id="menu" class="nav navbar-nav">
<% foreach (var node in Model.Nodes) { %>
<li><%=Html.DisplayFor(m => node)%>
<% if (node.Children.Any()) { %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@using System.Web.Mvc.Html
@using MvcSiteMapProvider.Web.Html.Models

<ul id="menu">
<ul id="menu" class="nav navbar-nav">
@foreach (var node in Model.Nodes) {
<li>@Html.DisplayFor(m => node)
@if (node.Children.Any()) {
Expand Down

0 comments on commit 5afcf29

Please sign in to comment.