Hello,
We want to change our shopify cart image to this SVG:
When we change the logo in the theme coding it shows it way too big. Can somebody help?
Hello,
We want to change our shopify cart image to this SVG:
When we change the logo in the theme coding it shows it way too big. Can somebody help?
To edit the cart icon in the Dawn theme, follow these steps:
’ll be so happy if my suggestion can help to solve your problem. If you have any further questions.
We tried this but the image appears to big, what do we need to change?
Add the following SVG code
Add the following CSS code to your assets/ base.css bottom of the file.
.header__icon .svg-wrapper {
width: 22px !important;
height: 22px !important;
}
Thanks!
Go to Online Store → Theme → Edit code.
After pasting the custom SVG code, paste this code, which will control the height and width of the icon.
.header__icon--cart svg {
height: 26px !important;
width: 26px !important;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!