Mobile Menu Hamburger Layout

how do i change the menu layout when i press on the hamburger button menu on the header of my mobile website, currently it looks bad see first photo below, i want it in lines and i want some filling at the bottom with my policies and insta /fb / login logos. any good code for this, doesnt need to be perfect. Example menu from: https://mauro-milan.nl/

Hello @NinoB97

To show the menu items with lines below, you just need to follow below steps:

  1. Go to admin > online store > edit code.

  2. In code directory, find the file named “component-menu-drawer.css” and open the file.

  3. Copy below given css and paste it at the end of the css file that mentioned above.

.menu-drawer__menu li a {
  position: relative;
}
.menu-drawer__menu li a::after {
  position: absolute;
  content: '';
  border-bottom: 1px solid #eae3d9;
  height: auto;
  bottom: 0;
  left: 30px;
  right: 30px;
}
  1. Don’t forget to save the file after making changes.

Hope this code works for your issues.

and the icons you wants to show are already showing in menu drawer. and also don’t need to change the placement of that.

@BSSCommerce-HDL @BSSCommerce-B2B can one of u guys help me with this ?