Move drawer menu side on origins

Hi, how do i move the drawer to the right side, from the left side?

1 Like

@HOST_1

oh sorry for that issue can you please share your store url so i will check and let you know

Hello @HOST_1

Can you share store URL?

1 Like

www.hostfashion.myshopify.com

password: UDEIMARKEN

yes here

www.hostfashion.myshopify.com

password: UDEIMARKEN

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (max-width: 767px){ .header { display: grid; grid-template-areas: " heading icons left-icons" !important; grid-template-columns: auto !important; align-items: center; } .header__icons{ padding-right: 4.8rem !important; } }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Hi thank you, it worked on mobile, but not on pc. Can you help me to do it for pc too?

@HOST_1

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (min-width: 990px) { .header--top-left.drawer-menu{ grid-template-areas: "heading icons navigation" !important; } }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.