How to remove/hide page title "Events" in Modern Events Calendar

I need to know how to remove the page title on my Events page. I have disabled the title on the page but it still shows. Thanks in advance .

Hello @joshcr11,

Thanks for asking. :slight_smile:

Can you please share the website URL as on my local setup I don’t see Events as page title?

Thanks.

This is the url to the page in question. You will notice the LARGE black title that says “EVENTS”. I am unsure of how to get rid of it. I have tried many things that I have read on here but still have had no luck! Thanks!

Hi There,

Thank you for the URL and sorry for the delay, but this is what that page looks like on my end (https://prnt.sc/gwrl99), Would you mind to clarify where is that large black “EVENTS” title?

Have a nice day,
Cheers!

Yeah sorry, I had to temporarily do something different to alleviate the issue. I set it back so you can see what I am talking about.

Thanks!

Hi,

To get rid of the title, you can add the code below in X > Launch > Options > CSS

.post-type-archive-mec-events #main-content > h1 {
    display:none;
}

Hope that helps

Hello, it did not work for me, can i get some help?

Hi @jcosta1,

It’s working on my end, perhaps you’re referring to a different H1? Please provide the URL that has this issue.

Thanks!

Hello, thanks for the reply, here are the two places where i’m having issues: http://elaempreende.com/eventos/empreendedora/
and : http://elaempreende.com/eventos/
I want to remove “Eventos” and “The Blog”

Thanks!

Hello @jcosta1,

To resolve your issue, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.postid-101 .x-header-landmark,
.post-type-archive-mec-events #main-content h1 {
    display: none;
}

Please let us know if this works out for you.

Works, the only problem is now there is a line between where before was the “eventos” text, and where the page content starts. How do i remove that?

Thanks.

I see the code @RueNel gave works in http://elaempreende.com/eventos/empreendedora/ but not in http://elaempreende.com/eventos/.

In the code, change .post-type-archive-mec-events #main-content h1 to .post-type-archive-mec-events .x-header-landmark

In case you want to remove the landmark globally, simply use:

.x-header-landmark {
    display: none !important;
}

Hope that helps.