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, how can I have the first 3 beans in a line and the next 3 ones (with 3x) in the line underneath?
Website: www.pawliciouz.com
Solved! Go to the solution
This is an accepted solution.
@pawliciouz - please add this css to the end of your base.css file and check, should look like screenshot below
.product-form__input input[type='radio'] + label{width: 30.33%;}
This is an accepted solution.
@pawliciouz - please add this css to the end of your base.css file and check, should look like screenshot below
.product-form__input input[type='radio'] + label{width: 30.33%;}
Worked perfectly. Thank you
Hi @pawliciouz, you can try to add this code at the bottom of your section-main-product.css file to do it
@media screen and (min-width: 768px) {
variant-radios { width: 79% !important; }
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hi @pawliciouz,
Go to Assets > base.css and paste this at the bottom of the file:
.product-form__input input[type='radio'] + label {
width: 30% !important;
}
Hope it helps!