I am wanting to remove the Event Count from the Daily View Add on, I tried adding the following CSS in the EventOn Style settings. But it still shows. I need some help removing that part.
.evodv_current_day p.evodv_events {
font-size: 4px;
text-transform: uppercase;
opacity: 0.5;
display: none;
}
Hello,
Please add this CSS code to EventON > Styles (If you don’t see any change, EventON > turn off Write styles to header > save settings > turn on Write styles to header):
.evodv_current_day p.evodv_events { display: none !important; }
Thanks that worked, is there a way to show the header (jump months, filter, prev-next month arrows) on certain views but not on all? I want to hide these for the Daily View but show them in the Full View.
Adding the following CSS appears to hide the header for all my views:
.ajde_evcal_calendar .calendar_header {
min-height: 37px;
padding: 0px;
margin: 5px 0 15px;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: none;
}
Thanks
Please add this to the shortcode:
dv_view_style=”oneday”
It seems that the rest is already hidden, no?
Please add this CSS code to EventON > Styles (If you don’t see any change, EventON > turn off Write styles to header > save settings > turn on Write styles to header):
.ajde_evcal_calendar.evoDV .calendar_header { display: none !important; }