Hiya,
To change the styling of any of the Events Manager elements you’d simply need to overwrite the CSS by adding to your theme’s stylesheet.
Cheers,
Phil
Sorry, I’m very new in php and css. What do you mean with “overwriting the css by adding to your theme’s stylesheet. Here is one example:
The event calendar widget is not styled the right way. I would like to change it with css. So how can i do this? When I open the style.css for editing, nothing happens with the calendar, even when I erase everything. So where are the parameters for the calendar? I’m kind of lost. Sorry…
Greetings, t.
By overwriting, Phil just means to put your own CSS code in the style.css file of your theme. This will overwrite defaults in the theme and plugin.
What you add to your stylesheet depends on what you want to do. For example, if you wanted to add a border to the Events Calendar widget you could use something like:
.em-calendar {
border: 1px solid #ddd;
}
You can find the names of classes and IDs by looking at the source code for your page.
YES. Thanks a lot!! That really helps me.