我正在尝试使用https://bootswatch.com/superhero/ Bootstrap中的免费Bootstrap template
Bootstrap。我从此网站复制了bootstrap.css
和bootstrap.min.css
并粘贴到我的应用程序中,但我的应用程序未显示此模板navbar
。
请从本网站和我的主页找到附带的屏幕截图。
来自我的申请:
我的_Layout.cs
:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<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>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<p>© @DateTime.Now.Year - My ASP.NET Application</p>
</footer>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>
我的BundleConfig.cs
:
public class BundleConfig
{
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/bootstrap").Include(
"~/Content/bootstrap.css",
"~/Content/bootstrap-theme.css"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
}
}
任何建议都非常感谢。谢谢。
答案 0 :(得分:2)
您可能没有使用与Bootswatch主题相同的Bootstrap版本。我遇到了同样的问题并在Github上打开了一个问题,Thomas Park给了我以下答案:
是的,请确保您使用的是与正在使用的Bootstrap相同的版本。现在v4在bootswatch.com上,但您可以在https://bootswatch.com/3/和https://bootswatch.com/2/
抓取旧版本
因此,请尝试使用之前版本的Bootswatch主题更新您的Bootstrap版本 OR (来自上面的链接)。
答案 1 :(得分:0)
在我的_Layout.cshtml文件中,我在头部分给出了这样的脚本和样式:
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/jqueryval")
@Scripts.Render("~/bundles/bootstrap")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/Custom")
</head>
&#13;
在您的Bundle Config文件中,我认为您不需要两个单独的语句来包含相同的bootstrap.css文件。
答案 2 :(得分:-1)
而不是使用bundles.config和渲染脚本。只需下载bootstrap.min.css文件并将其复制到MVC项目中的一个文件夹中。在_layout.cshtml文件中,将该css文件拖放到标记内。它必须工作。试试吧。