Hi @aands,
Thanks for reaching out to us!
I was able to check the link you provided and found that you’re having an issue with a page template. Since the main calendar page doesn’t really use the full-width template, the header will have a slightly different margin value than the rest of your site.
You can set the default margin of your header by adding the following snippet under Appearance > Customize > Additional CSS:
.pc-wrapbuilder-header {
margin-bottom: 0 !important;
}
Or modify the calendar class instead and remove the top and bottom padding like this:
.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
padding-bottom: unset !important;
padding-top: unset !important;
}
Could you please try it out and see if it works for you?
Regards,
Jean