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?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With