Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theeventscalendar/c1866cbe1ca831724087 to your computer and use it in GitHub Desktop.
Save theeventscalendar/c1866cbe1ca831724087 to your computer and use it in GitHub Desktop.
Sample CSS tweaks for Events Calendar PRO's Calendar widget
/** Change the background colour of the grid header area */
.tribe_mini_calendar_widget thead,
.tribe_mini_calendar_widget .tribe-mini-calendar-nav td {
background: lightblue;
}
/** Change the colour scheme of the days of the week */
.tribe_mini_calendar_widget .tribe-mini-calendar-dayofweek {
background: yellow;
color: black;
}
/** Make highlighted days (those that have events) pop out a little more */
.tribe-mini-calendar td.tribe-events-has-events {
background: #FAa060;
}
/** Remove the "dot icon" for populated days */
.tribe-mini-calendar .tribe-events-has-events div[id*="daynum-"] a::before {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment