Layout page in my MVC project displays the following code:
@Styles.Render("~/Content/css")
I also read that this will ask for the files defined in the RegisterBundles method (in the BundleConfig class in the App_Start folder to be precise).
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
But somehow my changes in Content/bootstrap.css won't go through. My MVC project only renders the Content/bootstrap.min.css, only changes in that file will change the styling of my MVC project. Can anyone explain me or direct me somewhere I can read about how changing CSS code in MVC works? Is it necessary to always change the bootstrap.min.css? I thought there must be some other way to change CSS code.