Modern Event Calendar custom fonts

Hi,

I noticed that when I change default fonts in Modern Event Calendar the “Category” header still use default font (custom font not applied). Have a look at the screenshot.

Hi there,

we will need to have access to the website itself to be able to check the front end and see why this is happening on your website.

It might be an additional Custom CSS which is causing the issue which you can check in X > Launch > Options > CSS.

Thank you.

Hi,

I have posted my access credentials in security note to my initial post.

Hi there,

Please kindly add the code below to Pro > Launch > Theme Options > CSS:

.mec-single-event-category dt {
    font-family: 'Open Sans Condensed',Helvetica,Arial,sans-serif;
}

Hope it helps.

Yes,

It workes fine thanks but I hope that you will report that omission to the developer of the Modern Event Calendar.

That is actually a matter of different HTML code generation. For the other sections it generates the <h3> tag but for the category case it generates <dt> tag. It is their choice and not a bug.

Our theme style stuff differently between h3 and dt tags that is why you saw a different font.

Thank you.

OK.

Thanks. There is another minor styling issue with this plugin. It is related to the countdown box on vertical view at mobile devices. Shall I open another thread for it? You can see that its box is a bit smaller and aligned right.

Hi there,

Thank you for considering to add a new thread as it will help us focus on each matter in time. For now please kindly add the code below to X > Launch > Options > CSS:

@media (max-width: 480px) {
    .clock.twodaydigits span:nth-child(7) {
        display: none;
    }
    .clock.twodaydigits ul:nth-child(8) {
        clear:both;
    }
}

That should do it, if you need a follow up we will be grateful if you open up a new thread. Thank you.

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