css-problem with Events Maker

Hi there, good morning!

I have a problem with the Integration of the plugin “Events Maker”. It’s the only calendar-plugin that supports polylang, therefor I wanna use it. The only issue is, that the containers of the Events stays transparent and not white. The advice from “dFactory” was to copy all the templates to the theme-folder - I did so with no success. You can see the result in an example on my testsite:

http://hg3.ch/wordpress/de/events/event/howdy-this-is-another-no-event/

It seems, like the templates override the css of sparkling theme. Do you can help me to handle this?
By the way: I tried to copy the templates also in the sparkling-child theme - no success.

Thank you very much for assistance and best regards,
Robert

In addition to my question I have to mention, that I added further on the following code to the child-theme functions.php. But it didn’t help either.

function custom_em_content_wrapper_start( $output ) {
    $output = '<div id="container" class="post-inner-content"><div id="content" role="main">';
    return $output;
}
add_filter( 'em_content_wrapper_start', $output );

Do you have any ideas? Thanks a lot and kind regards from cloudy Zurich,
Robert

Well, sometimes Problems are going away by themselves :slight_smile:
It was a wrong code. The correct one is:

function custom_em_content_wrapper_start( $output ) {
    $output = '<div id="container" class="post-inner-content"><div id="content" role="main">';
    return $output;
}
add_filter( 'em_content_wrapper_start', 'custom_em_content_wrapper_start' );

so this thread is solved. Thank you anyway and have a nice weekend!
Robert

Awesome great to see you got that resolved.

Please advise if you have more questions.

Have a fantastic day!