- This topic has 1 reply, 2 voices, and was last updated 14 years, 3 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › Sidebar Calendar
I’ve added Event Manager for a sidebar calender to show off my events. However, I can not seem to change the size of the text for the numbers in the calendar. I have changed the size of the text for the names of the month, and the spacing for the blocks and it all fits. I would like to change the size of the text to make it look less cluttered. My website is http://www.versatilebeats.net. any help is appreciated.
Everything is changeable in the CSS. Create the file my_own.css in the plugin dir and copy over from events_manager.css what you want to change:
table.dbem-calendar-table td {
padding: 2px 4px;
text-align: center;
}
table.dbem-calendar.table tr.days-names {
font-weight: bold;
}
table.dbem-calendar-table td.eventless-pre, .dbem-calendar td.eventless-post {
color: #ccc;
}
table.dbem-calendar-table td.eventful a, table.dbem-calendar-table td.eventful-today a {
font-weight: bold;
color: #FD7E29;
}