How to add space between cart and search buttons?
website: https://leegacy-shop.myshopify.com/
password: yowbow
A user seeks help adding spacing between cart and search buttons on their Shopify store header.
Initial Solution:
.header__icon--cart with margin-right: -0.2rembase.css.liquid file via Online Store → Theme → Edit code → AssetsClarification:
base.css.liquid (not base.scss.liquid), but the same CSS code appliesAdditional Request:
.card-wrapper with margin-right: 2rem to the same base.css.liquid fileResolution:
User confirms the solutions worked successfully.
How to add space between cart and search buttons?
website: https://leegacy-shop.myshopify.com/
password: yowbow
.header__icon--cart {
margin-right: -0.2rem;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
thanks
but i dont have base.scss.liquid, i only have base.css
Put the code in it.
and how to add space between featured products?
Hello @Beibarys
Add this CSS at the bottom of Online Store-> Theme->Edit code->Assets->base.CSS.liquid
.card-wrapper {
margin-right: 2rem;
}
Thanks a lot