MEC Timetable issue

Hi there!

I’m facing a style issue on my timetable view of MEC. The Event details (text) is not centered in the boxes and the top distance is too big (margin / padding). Please see screenshot.

https://mattheiser-handball.de/trainings/ (User Credentials via private note)

Can you give me a hint?

And: Ist there any file where I can change the Weekdays into the german ones (translation). I already made up a topic about it and it has been sent to bug tracking… but in the meantime I like to hard-code the translation.

Thanks and kind regards
Florian

Hi Florian,

  1. To fix the spacing, you can add the code below in Theme Options > CSS

h4.mec-event-title {
   margin-top:0;
}

I was able to come up with that code with the help of google chrome inspect element.


  1. To override the weekly skin, you can simply put the wp-content/plugins/modern-events-calendar/app/skins/weekly_view/render.php into the wp-content/themes/x-child/modern-events-calendar/app/skins/weekly_view/render.php and edit it as you like.

For more information, kindly refer to the link below

Thanks

That CSS Code helped me! THANKS!
Addition: Is there any way to hide the “organisator line” in the timetable view (third line after location)?

Hi @2205649,

Add this code in your custom CSS:

.mec-event-organizer {
    display:none;
}

Let us know how it goes.

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.