Skip to content

Instantly share code, notes, and snippets.

@ElliottLandsborough
Created November 8, 2020 01:33
Show Gist options
  • Save ElliottLandsborough/ca0bca360c2ab3f7a3e8744303d8c1cb to your computer and use it in GitHub Desktop.
Save ElliottLandsborough/ca0bca360c2ab3f7a3e8744303d8c1cb to your computer and use it in GitHub Desktop.
rhythmaddict.co.uk custom css
/* changes from elliott */
/* make the titles white */
#tribe-events-content h1, #tribe-events-content h2 {
color: white;
}
/* make the text thats in the white box black */
.tribe-events-event-meta {
color: black;
}
/* when the screen is less wide than a certain number of pixels */
@media only screen and (max-width: 1140px) {
/* center the logo at the top */
.title-area {
display: block;
margin: 0 auto;
float: none;
}
/* improve how the menus and text scale down */
.site-header .widget-area {
margin-top: 20px;
text-align: center;
float: none;
max-width: 500px;
width: 100%;
margin: 0 auto;
}
/* improve sidget vertical spacing */
.site-header .widget-area .widget {
margin-bottom: 10px;
margin-top: 10px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment