I’d like to have the event names displayed by style=”names” in the full calendar be larger. I know how to change the font size but the box seems to float above everything else and not be responsive to bigger text inside.
Can this be changed?
Thank you
Hello,
Could you please add this CSS code to EventON > Styles:
.evofc_months_strip.names .eventon_fc_days .evo_fc_day.has_events span i { font-size: 15px; line-height: 15px; height: 16px; }
If you can’t see any change, EventON > turn off Write styles to header > save settings > turn on Write styles to header.
Thank you. The problem with this approach is that the containers do not grow with the text, which means I will have text that is cut off.
Is there a way to make the container fill all necessary space? I can’t surmise from looking with inspector if each day floats above the whole calendar and it’s size is determined programmatically.
Thank you
The only solution is to use this code
.evofc_months_strip.names .eventon_fc_days .evo_fc_day.has_events span i { overflow: hidden; display: block; text-overflow: ellipsis; white-space: nowrap; }
to make it only one line.