kthornbloom / Monthly

A jQuery based responsive calendar
http://kthornbloom.com/monthly/
Other
316 stars 108 forks source link

Highlight Sunday #83

Closed CTPLdev4 closed 6 years ago

CTPLdev4 commented 6 years ago

I want to highlight Sunday dates with a light yellow background. How do I do it?

richardtallent commented 6 years ago

Something like this in your CSS will do it:

.monthly-week .m-d:first-child{
  background-color: #fffff0;
}

Note that this will also overwrite the background color of empty days (those outside of the month). If you want them to remain greyed out, change the selector to .monthly-week .m-d:not(.monthly-day-blank):first-child instead.

CTPLdev4 commented 6 years ago

Thanks for the help. It solved my issue.