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/1871031055304670ba2b to your computer and use it in GitHub Desktop.
Save theeventscalendar/1871031055304670ba2b to your computer and use it in GitHub Desktop.
Sample CSS tweaks for The Events Calendar List Widget
/** Change the size and colour of the widget title */
.tribe-events-list-widget h2.widget-title {
color: blue;
font-size: 30px;
}
/** Make each event standout with a new background and border */
.tribe-events-list-widget li.tribe-events-list-widget-events {
background: yellow;
border: 1px solid red;
padding: 10px;
}
/** Make each event title uppercase and underline them */
.tribe-events-list-widget h4.entry-title a {
text-decoration: underline;
text-transform: uppercase;
}
/** Make the event date/time information a little more prominent */
.tribe-events-list-widget div.duration {
color: green;
font-weight: bold;
transform: rotate( -4deg );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment