How do I change the disabled dates css for boootstrap 5 datepicker. I want to change it from underline to maybe red text.
Try adding this to your CSS styles:
.weekend.off.disabled {
color: red; /* Change 'red' to any color value you prefer */
}
That is for weekends. For custom disabled dates use:
.off.disabled {
color: red; /* Change 'red' to any color value you prefer */
}
Actually forget that last post ...... if it doesn't work try this:
.daterangepicker td.off {
color: red;
text-decoration: none;
}
The solution is
.daterangepicker td.off.disabled {
color: red;
text-decoration: none;
Thanks for pointing me in the right direction.
1 Like