Hi, this is what I used to try to remove the capitalised headers inside the event page details itself:
.evcal_evdata_row .evcal_evdata_cell h2, .evcal_evdata_row .evcal_evdata_cell h3 {
text-transform:none;
}
Didn’t seem to work.
What did work to take the upper case off the event title and subtitle is:
.eventon_events_list .eventon_list_event .evcal_desc span.evcal_desc2,
.evo_pop_body .evcal_desc span.evcal_desc2{
text-transform:none;
}
.eventon_events_list .eventon_list_event .evcal_desc span.evcal_event_subtitle,
.evo_pop_body .evcal_desc span.evcal_event_subtitle{
text-transform:none;
}
Thanks!
Cara
Apr 6,2017 AT 12:22PM - 2 years ago -Are you wanting to know how to make the titles in the screenshot normal and not capital?
if so add this:
Hi, I am trying to change the subtitle in the event top and just capitalize the subtitle.
I want to change the current default of
text-transform: uppercase;
and replace it with
text-transform: capitalize;
When I use the code below in the original post / ticket and place it in the add your own custom styles boxes, it does not change the subtitle.
.eventon_events_list .eventon_list_event .evcal_desc span.evcal_event_subtitle,
.evo_pop_body .evcal_desc span.evcal_event_subtitle{
text-transform:capitalize;
}
Any help would be great
Hello Craig Allen,
Could you please add this CSS code to EventON > Styles (If you can’t see any change, EventON > turn off Write styles to header > save settings > turn on Write styles to header):
.eventon_events_list .eventon_list_event .evcal_desc span.evcal_event_subtitle, .evo_pop_body .evcal_desc span.evcal_event_subtitle {
text-transform: none !important
}
.eventon_events_list .eventon_list_event .evcal_desc span.evcal_desc2, .evo_pop_body .evcal_desc span.evcal_desc2 {
text-transform: capitalize !important
}