I want to move my cart to the far right of the screen and move my profile button to the far left. I would also like to make the buttons a bit bigger please.
my URL - https://7d1dw0-pw.myshopify.com/
if someone could help that would be great
I want to move my cart to the far right of the screen and move my profile button to the far left. I would also like to make the buttons a bit bigger please.
my URL - https://7d1dw0-pw.myshopify.com/
if someone could help that would be great
Hi @baileyhxrris ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
@media (min-width: 769px){
a.header__icon.header__icon--account.link.focus-inset.small-hide {
position: absolute !important;
left: 16px;
}
}
TRy this one.
@media only screen and (min-width: 989px){
header.header {
max-width: 100% !important;
}
a.header__icon.header__icon--account.link.focus-inset.small-hide {
position: absolute;
left: 0;
padding-left: 6rem;
}
.header__icon .svg-wrapper {
scale: 1.4;
}
}
And Save.
Result:
Note: mobile screen is not included on this changes.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!