Calling all CSS experts! I need some guidance on applying my custom stylesheet to a project in MVC. It seems like I'm doing everything right, but nothing is changing.
Here's what I have in index.html:
<link rel="stylesheet" href="~/Content/mystuff.css">
In BundleConfig:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css",
"~/Content/mystuff.css"));
Even with this setup, bootstrap continues to override my styles. Is there something else I should be referencing? Any help would be greatly appreciated.