Make Shop All go onto the same column in mega menu

hello,

I’d like the ‘Shop All’ to stack underneath the ‘Shop Bundles’ (Where green box is).

How do I do this? I want it to show as a top level menu.

https://om0k15yr0usgn1bz-86278439194.shopifypreview.com

Hello @kirsten11123 ,

The clean solution for it will be edit theme liquid code and apply the logic.

btw for now you can try this solution edit theme.liquid search for now here just before to it add this code


Regards
Guleria

This is a hackish solution, but it will work for now (and does not require code edits!) – add the following code to this sections “Custom CSS”:

.mega-menu__item:last-child {
  grid-column: 3;
  margin-top: -12rem;
}