I would like to be able to add a logo to the heading. I use the page link instead of embed code with wix, it would be nice to have some branding when users go to my elfsight events page.
2 Likes
Hi there, @Jacob_F
Thanks for the idea! I agree that it would be great to have this option in the settings. If more users upvote this idea, it might be considered in the future.
As for now, it’s possible to add an image with a custom code. Could you please specify where you’d like to add a logo: to the left or right of the heading?
1 Like
The left would be great! Thank you!
1 Like
This code will do the trick:
.eapp-events-calendar-events-calendar-title {
display: flex;
align-items: center;
}
.eapp-events-calendar-events-calendar-title::before {
content: "";
display: inline-block;
width: 40px; /* logo width */
height: 40px; /* logo height */
background-image: url('https://example.com/logo.png'); /* logo link */
background-size: contain;
background-repeat: no-repeat;
margin-right: 10px;
}
The logo should be added via link, so you should replace an example link with the link to your logo:
Please check it out and let me know if it worked
2 Likes