在 Orchard PJS.Bootstrap 默认值 css 之后加载 custom.css
Loading custom.css after PJS.Bootstrap default css in Orchard
所以我们使用 CodeGen 在 Orchard CMS 中创建了我们自己的主题。我们在其上使用 PJS.Bootstrap。现在我的任务是在 Theme's Style 中创建一个 custom.css 文件来做一些基本的样式。为此,我添加了 Style.Include("custom.css");在我们主题的 Views 中的 layout.cshtml 文件中。文件正在加载,但在 Bootstrap 的默认值 css 之前,如下所示:
<link href="/Themes/OurTheme/Styles/custom.css" rel="stylesheet" type="text/css">
<link href="/Themes/PJS.Bootstrap/Styles/site-default.min.css" rel="stylesheet" type="text/css">
我可以在 PJS.Bootstrap 默认值 css 之后加载我们的 css 吗?
提前致谢。
不要使用 Layout.cshtml 而是 CustomResources.cshtml 来加载您的自定义资源。只需检查 PJS.Bootstrap/Views 文件夹中的文件。
要么直接在其中插入您的资源,要么在另一个继承自 PJS.Boorstrap 的自定义主题中用替代品覆盖它。
所以我们使用 CodeGen 在 Orchard CMS 中创建了我们自己的主题。我们在其上使用 PJS.Bootstrap。现在我的任务是在 Theme's Style 中创建一个 custom.css 文件来做一些基本的样式。为此,我添加了 Style.Include("custom.css");在我们主题的 Views 中的 layout.cshtml 文件中。文件正在加载,但在 Bootstrap 的默认值 css 之前,如下所示:
<link href="/Themes/OurTheme/Styles/custom.css" rel="stylesheet" type="text/css">
<link href="/Themes/PJS.Bootstrap/Styles/site-default.min.css" rel="stylesheet" type="text/css">
我可以在 PJS.Bootstrap 默认值 css 之后加载我们的 css 吗?
提前致谢。
不要使用 Layout.cshtml 而是 CustomResources.cshtml 来加载您的自定义资源。只需检查 PJS.Bootstrap/Views 文件夹中的文件。
要么直接在其中插入您的资源,要么在另一个继承自 PJS.Boorstrap 的自定义主题中用替代品覆盖它。