Buy me a coffee

How to add banner to individual event page

You can follow these steps to add banner to individual event page.

#1. First, add this code to Code Injection > Footer

1

#2. Next, hover on Event Page > Click Gear icon

2Click Page Header Code Injection

3#3. Paste this code

<div data-wm-plugin="blog-post"></div>

4#4. Use this code to Custom CSS box

/* Individual Event Banner */
.section-background.wm-blog-banner>div:not(.section-background-image) {
    display: none;
}

5#5. Result

6The code will get Event Featured Image/Thumbnails  and make it to banner image.

7#6. To reduce banner image height, use this code to Custom CSS box

div.section-background.wm-blog-banner {
    min-height: 50vh !important;
}

8