I have implemented jQuery UI in my small project, but the CSS styles are not being applied.
The following bundle includes the necessary CSS files:
bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
"~/Content/themes/base/jquery.ui.core.css",
"~/Content/themes/base/jquery.ui.resizable.css",
"~/Content/themes/base/jquery.ui.selectable.css",
"~/Content/themes/base/jquery.ui.accordion.css",
"~/Content/themes/base/jquery.ui.autocomplete.css",
"~/Content/themes/base/jquery.ui.button.css",
"~/Content/themes/base/jquery.ui.dialog.css",
"~/Content/themes/base/jquery.ui.slider.css",
"~/Content/themes/base/jquery.ui.tabs.css",
"~/Content/themes/base/jquery.ui.datepicker.css",
"~/Content/themes/base/jquery.ui.progressbar.css",
"~/Content/themes/base/jquery.ui.theme.css"));
In my _Layout.cshtml file, I have included the following code:
@Styles.Render("~/Content/themes/base/css", "~/Content/css")
My Global.asax.cs file has a BundleConfig set to register on Application_Start()....
Even after clearing my Firefox cache, only the default bootstrap.css and site.css styles are showing up on my page. The custom styles for jQuery UI elements like dialogs are missing.
Any suggestions on what else I should check? I am trying to add some styling to my CRUD functionality using dialogs, but they are not displaying correctly.