Is it possible to change the font color of dates that fall on the weekends in jquery calendar? I try to use the class ui-datepicker-week-end but it only change the font color of Sun and Sat. What I want is to also change the color of days that falls on sun and sat.

link|improve this question

40% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You need a bit more specificity in your selector, since ui-datepicker-week-end is on the <td>, but there's an <a> with ui-state-default inside, like this:

.ui-datepicker-week-end, .ui-datepicker-week-end a.ui-state-default {color:red;}

You can test it here. If you're curious, the markup for day cell is like this:

<td class="ui-datepicker-week-end">
  <a class="ui-state-default" href="#">DAY NUMBER</a>
</td>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.