Hello, how would I…
- Remove the logo from the header? Including the link to the homepage.
& 2. Move the cart over to the left where the logo was? Also changing the cart to pop out from the left instead of right when a customer wants to check it.
A user seeks to modify their Shopify store header by removing the logo and homepage link, then relocating the cart icon to the left side where the logo was positioned.
Solution Provided:
header__heading and header__icons elementsCart Drawer Functionality:
Status: The basic header rearrangement issue was resolved with the provided CSS solution. The cart drawer animation remains a potential future enhancement requiring developer work.
Hello, how would I…
& 2. Move the cart over to the left where the logo was? Also changing the cart to pop out from the left instead of right when a customer wants to check it.
Hi @PoW8
Try this one.
@media only screen and (max-width: 749px){
h1.header__heading {
display: none;
}
.header__icons {
display: flex;
grid-area: left-icons;
}
}
And Save.
Result:
For the pop-out cart you a developer for that to change the some liquid code.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you. Not the biggest deal but do you know if its possible to make the contents of the cart appear from the left instead of the right?
Even though we’ve moved the cart drawer to the left, the opening and closing functionality remains on the right.
To see what I mean, you can add this CSS code:
css
Copy
.drawer {
justify-content: flex-start !important;
}
For the cart drawer to fully function on the left, additional edits to the JavaScript and Liquid code are required.
We can implement these changes for you, but it would involve a fee for our time. Let us know if you’re interested!
Thanks!
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks again. I appreciate it.