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,
I'd like to center variant picker and quantity selector (without center the description) on mobile view please.
Have a nice day.
Hey @Mcfly69290,
Can you share the link to your store please? Thanks!
Hey @Mcfly69290,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
@media only screen and (max-width: 989px) {
fieldset.variant-picker__option {
justify-items: center !important;
}
.product-info__block-item[data-block-type="quantity-selector"] {
text-align: center !important;
}
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
It worked, thank you !
Hello @Mcfly69290
Can you share store URL?