I'm struggling to apply the correct styling to my datatables. Here is a snapshot of how my datatables currently appear
This snippet is from my BundleConfig.cs file:
public static void RegisterBundles(BundleCollection bundles)
{
// Code for bundling scripts and styles
}
Here's what I have included in my _Layout.cshtml:
<!-- Links to external stylesheets -->
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@Scripts.Render("~/bundles/modernizr")
@RenderSection("scripts", required: false)
@Styles.Render("~/Content/css")
I got it working by removing the Lumen css file from my BundleConfig.cs
// Updated StyleBundle code snippet after changes
In this project, I am using Bootstrap 3.0.0, JQuery 1.10.2, and DataTables 1.10.11. Although these versions are outdated, I am following along with Mosh Hamedani's MVC course.