I want to use Bootstrap to create a NC theme.
I installed Bootstrap via Nugets Package Manager in Visual Studio 2013. Then i added :
Html.AppendScriptParts("~/Scripts/bootstrap.js"); Html.AppendScriptParts("~/Scripts/bootstrap.min.js");
in _Root.Head.cshtml
and
Html.AppendCssFileParts(string.Format("~/Content/bootstrap.css", themeName)); Html.AppendCssFileParts(string.Format("~/Content/bootstrap.min.css", themeName));
in Head.cshtml
Now its working for the half. I tried to play with a Bootstrap navbar, the navbar appears, but the dropdowns does not work. It seems that i miss some configuration for the .js files.
How can i get this the right way? Some help would be Greatly Appreciated.