I'm currently attempting to implement a custom datepicker theme on my website. Unfortunately, I am only able to get the jquery-ui.css themes to display, which I find unappealing and undesired. I do not have the desire or expertise to create a new theme from scratch.
During my search for solutions, I came across this website: jQuery datepicker skins
After downloading the necessary css file from the site, nothing seems to change on my end. The GitHub page Git site for custom datepicker mentions that specific classes need to be applied to the datepickers, but I am unsure of what exactly that entails.
Here is the code snippet I am using in an attempt to make it work:
<!-- Jquery Ui script -->
<script src="~/Scripts/jquery-ui.js"></script>
<!-- Datepicker themes -->
<link href="~/Content/jquery-ui.css" rel="stylesheet"/>
<!-- Datepicker melon theme -->
<link href="~/Content/datepicker.css" rel="stylesheet" />
If I remove the jquery-ui.css file, the datepicker simply appears without any styling or theme applied.