Fix padding
If you change the slug in *EventOn Settings » Events Paging » EventOn Event Post Slug* to be the same as the slug of the selected events page, it may adds an empty paragraph with bottom padding to the top of the page. This removes it.
/* -- START Remove EventOn padding from events page-- */
.post-type-archive-ajde_events #et-main-area > .wrapper > p
{display: none;}
/* -- END Remove EventOn padding from events page-- */
Code language: CSS (css)
EventOn: fix social media icon background
The non-hover setting has been removed from v2.7.
/* -- START fix background color social icons -- */
.evo_metarow_socialmedia a.evo_ss {
background: #d7c48d
}
.evo_metarow_socialmedia a.evo_ss:hover {
background-color: #1d403a;
}
/* -- END fix background color social icons -- */
Code language: CSS (css)
EventOn: completed event title not striked through
/* -- START No title strike through for completed events -- */
.eventon_events_list .eventon_list_event .evcal_list_a.completed-event
.evcal_event_title {
text-decoration: initial;
text-decoration-line: initial;
}
/* -- END No title strike through for completed events -- */
Code language: CSS (css)
EventOn: Subtitles not in capital
Are in capital by default. Add this to change that in normal case. You may need to disable the 'Write dynamic styles to header' setting.
/* -- START Don't show subtitles in capital letters -- */
span.evcal_event_subtitle {
text-transform: unset !important;
}
/* -- END Don't show subtitles in capital letters -- */
Code language: CSS (css)
EventOn: Time Format
{width="6.3in" height="2.9378477690288713in"}
EventOn: Month Toggles
The [Browse month] and [Current month] toggles have an opacity and normal text, to change that:
/* -- START fix jumper buttons -- */
.evo_cal_above span{opacity:1 !important;}
span.evo-jumper-btn {font-weight: 700 !important;}
span.evo-gototoday-btn {font-weight: 700 !important;}
/* -- END fix jumper buttons -- */
Code language: CSS (css)