Archived topic
CSS Styling Issue variantions
5 replies · Started by nik9 on February 11, 2021
Hello,
I have a styling issue for mobile. How can I adjust (only on that product page) this to this for mobile only? => https://ibb.co/wg1cpSN
I tried with .variations {text-align-last: center;} but that does not work..
Cheers
Hi there,
Try this CSS:
.vi-wpvs-variation-wrap {
justify-content: center;
-webkit-justify-content: center;
-moz-justify-content: center;
}
Let me know :)
Thanks!
Now I use this CSS:
But.. it does not work on iPhone.. safari & chrome tested. Do I have to use for that different options?
.vi-wpvs-variation-wrap {justify-content: center !important;}
.vi-wpvs-variation-style .vi-wpvs-variation-wrap-wrap {text-align-last: center;}
.woocommerce div.product form.cart .variations td.label {text-align-last: center;}
td.value.vi-wpvs-variation-style-content {text-align-last: center;}
Yea.. that's browser support issue. Edited CSS here have a try:
https://generatepress.com/forums/topic/css-styling-issue-variantions/#post-1655105
perfect! thanks! :)
No problem :)