Hi,
im looking to make the variant drop down menu full width on mobile.
my site is https://luxurymrkt.com
i tried to change it myself and it changed the sort and filter buttons also so didn’t look correct. I’m looking to make it like the picture below full width. Thank you
Hi @Luxurymrkt ,
Go to Assets > theme.css and paste this at the bottom of the file:
@media only screen and (max-width:768px){
.js-qty__wrapper {
width: 100% !important;
max-width: none !important;
}
.product-single__meta .variant-wrapper select {
width: 100% !important;
}
}
Hope it helps!