Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello Everyone, I have a website in which on my home page, there is a product being shown and I want to center the title text and make the product image have rounded square edges. PLEASE SEE THE ATTATCHED IMAGE. Thanks!
MY STORE WEBSITE: www.gadget-pods.store
Hey Thanks But, Where do I put the css code?
Okay That Worked but there is one problem, you see how it says sale 35% on top of the image? I also want that to have rounded square edges
I also want to make the add to cart and buy now buttons with rounded square corners, how do I do that?
Okay that worked but the sale thing is not rounded still
Okay Sure Here:
Hello @Pods10101
Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css.
Add the provided code at the end of the file.
.badge.sale-badge {
border-radius: 10px !important;
-webkit-border-radius: 10px !important;
-moz-border-radius: 10px !important;
}
Hey There, This works but, I want it to match and be together with the image as it is looking a bit akward
Also how do I make the sale tag the red one, its size bigger as it looks small
Hello @Pods10101
Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css.
Add the provided code at the end of the file.
.productView-image .productView-img-container img:not(.zoomImg) {
border-radius: 10px;
}
.halo-productBadges .badge.sale-badge {
background: red!important;
font-size: 15px;
}