Events page padding with PRO HEADER

Hi guys,

I’m using the Modern Events plugin + Pro header and the padding on the page is all wrong and I can’t figure it out in the CSS.

I would like to:

  1. Add padding to the page so it’s not hidden under the Header
  2. Edit the “Events” page title to look nicer.

http://35.239.190.254/events/

Thanks in advance!
Chris

Update:

I found a solution to the overflowing Header by changing it to “Absolute”. I still need help with editing the “Events” page title though if you can help :slight_smile:

Hi @chris,

Please try adding this custom CSS under Theme Options > CSS:

section#main-content h1 {
    text-align: center;
    margin: 45px 0;
}

@media (max-width: 767px){
    section#main-content h1 {
        margin-top: 100px;
    }
}

Hope it helps :slight_smile:

Perfect thank you! :slight_smile:

You’re most welcome @Chris :slight_smile:

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