Dawn Theme - Move Header menu to right side in mobile

Hello! Can someone help me move the header menu to the right in mobile?

In desktop, it’s already in right side but when it comes to mobile, went back to left. Thanks

Hey @Xndysnski
Can you please share your Store URL and Password if enabled?

Hello @Xndysnski

To provide you with the most precise solution in this case, could you please share your page URL ( with pass if your store password is enabled )?

Thank you and hope to hear from you.
Best regards,
GemPages Support Team

@Xndysnski Do you wants such design?

If yes, update below css for mobile

.header {display: flex;

grid-template-areas: “left-icon heading icons”;grid-template-columns: 1fr 2fr 1fr;align-items: center;flex-direction: row-reverse;justify-content: space-between;

}

Hey @Xndysnski
Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag

It works! But when you click the menu, it opens at the left which is weird.

@Xndysnski Also Add css

.menu-drawer{right: 0;left: auto;

}

Perfect! But the cart icon is on the left, should be at the right before the menu. (Mobile Only)

Is there a way to fix this? Thanks!

you can use media query for mobile view

@media (max-width:767px) {
//your css
}