Bug in Contact Over Map Component

On the Contact over map component, the “View larger map” and the +(zoom in) button are not accessible as the <div class="position-relative px-2 px-xl-5 py-5"> that wraps the contact form is over the top of them. See below (blue box illustrating the coverage)

Work around:
Delete the py-5 class and add a clearmap class
<div class="position-relative px-2 px-xl-5 clearmap">

Add add this to a stylesheet

@media (min-width: 768px) {
  .clearmap {
    margin: 5rem;    
  }
}

1 Like

Great catch! We will fix this in our next update.