I use the Launch Theme for my site, www.blackumbrella.com. On mobile, it has the shopping cart icon on the left side of the header and the hamburger menu button on the right side. (desktop is ok).
Is it possible to swap their locations for a better user experience? (menu on left and cart icon on right)
My theme doesn’t have any options to change their locations. 
Thx! -Joel
1 Like
Hi @jsmernoff
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
a.header-actions-list-item.drawer-toggle {
right: unset !important;
left: 15px !important;
}
a.header-actions-list-item.icon-cart.header-cart-link {
left: unset !important;
right: 20px !important;
}
Here is the result: https://prnt.sc/EMRKQTHH2LKg
I hope this helps!
Best regards,
Daisy
1 Like
Hi @jsmernoff
Try this one,
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “theme. Liquid” file. Find the tag and paste the code below before the tag.
And Save.
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like