Hello again Miroslav,
Unfortunately there is no specific selector for “today’s date”. You would need some calculations and possibly javascript to get that done. Something like this:
- Today’s date: 9th
- What is the first day of the month: June 1 is Thursday
- So there are 4 days in that week (Thu, Fri, Sat, Sun)
- 2nd week starts with 5th, third week starts with 12th etc.
- So in which row would 9 be: June 9 is in row #2
- Which column would 9 be: it’s a Friday, so column #5
- And then you can do the css like this:
.datepicker-days table tr:nth-child(2) td:nth-child(5) {
color: red;
}
That’s a rough approach, but that’s about how much I can help with this. We are limited in supporting and developing customization requests.
Hope it gets you started.
Cheers,
Andras