sorry for not responding earlier.
there are two ways you can chose lower width and height for swatches from product edit page. there’s also option to use custom width and custom height.
in your case you can also increase container width using below given css
td.value {
min-width: 500px;
}
Hope it helps. Let me know if you need any other help.
best regards
Thanks! You are very nice. Tried and it works. However is it possible to apply the css only on desktop website? Mobile version has some problems with the code.
yes you can make css applicable to desktop only
@media screen and (min-width: 800px) {
td.value {
min-width: 500px;
}
}
Or you can simply use percentage instead of fixed width like this
td.value {
min-width: 70%;
}
if you like the plugin consider leaving a review for it. it means a lot to us.
-
This reply was modified 2 years, 7 months ago by
SysBasics.
omg you reply immediately ! It’s perfect now, genius!thank you