Transfiguration - Marietta, GA

At certain screen size between mobile & small laptop, the menu is empty

Assigned to
Kyle Sullivan, Web Development at Diocesan Kyle S.
Notes

Comments & Events

Kyle Sullivan, Web Development at Diocesan
It's having issues from 1023px – 1270px.
Kyle Sullivan, Web Development at Diocesan
Wow, so there was a media query hidden in the Parent Theme. This has been a stark reminder of why I stopped building on the DPI Theme.

Here's the relevant code from /transfiguration/sass/primary/headers/_ubermenu.scss.
.ubermenu {
  …
  .ubermenu-nav {
    li.ubermenu-item {
      .ubermenu-row {
        margin: 0;
        @media (min-width: 1024px) {
          display: flex;
          justify-content: flex-end;
        }
      }
    }
  }
}
Kyle Sullivan, Web Development at Diocesan
Kyle Sullivan completed this to-do.