向ASP.Net MVC 5添加新主题不起作用

时间:2018-01-28 15:51:35

标签: css asp.net asp.net-mvc twitter-bootstrap asp.net-mvc-5

我有以下问题。当我尝试将新主题添加到ASP.Net MVC 5时,我的Navbar崩溃了。当我使用标准引导程序时它可以工作。我不知道为什么它不起作用。

这是我的BundleConfig:

bundles.Add(new StyleBundle("~/Content/css").Include(
                  "~/Content/bootstrap-lumen.css",
                  "~/Content/site.css"));

这是标准MVC _Layout.cshtml页面:

<div class="navbar navbar-inverse navbar-fixed-top">
    <div class="container">
        <div class="navbar-header">
            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
            </button>
            @Html.ActionLink("Application name", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
        </div>
        <div class="navbar-collapse collapse">
            <ul class="nav navbar-nav">
                <li>@Html.ActionLink("Home", "Index", "Home")</li>
                <li>@Html.ActionLink("About", "About", "Home")</li>
                <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
            </ul>
            @Html.Partial("_LoginPartial")
        </div>
    </div>
</div>

这是我使用普通Bootstrap时的结果:

Correct Navbar

当我尝试使用Lumen Theme

运行时,这是结果

enter image description here

有人能帮助我吗?在其他项目中,它始终有效,我不知道哪里出错了。

2 个答案:

答案 0 :(得分:1)

这是因为Lumen使用了Bootstrap 4.导航问题是known breaking change

您可以选择使用Bootstrap 3主题,也可以执行migration到版本4。

答案 1 :(得分:0)

您可以通过更改网址中的版本号来下载第3版: