How to change the defult CSS file that is applied to _Layout.cshtml using code in MVC 4
2 answers
PLease gives more information about your problem. what is more, you can remove the default css from the layout page and provide the css on the page u want to use the CSS (i.e. on the local page)
or you can follow this approach:
bundles.Add(new StyleBundle("~/Content/css").Include("your css");
0
user2067278
source
to share