How to change default CSS File which is apply to the _Layout.cshtml using code in MVC 4
asp.net-mvc-4
Solution
Root > App_Start > BundleConfig.cs
Change this line:
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
to
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/MyStlyle.css"));
And place your custom css in `Root/Content/` folder.
Problem
For eg:-In MVC Website the default css is Applyed "Site.css" and I want to Apply "MyStlyle.css" inplace of "Site.css"... How Can I change this File?