Cyber Monday & Friday 40% Deals Return Coupon code: Friday2025

Hide Swatches Name

Martin Braut

Hi team,

please can you hide the name of variation swatches on mobile version:

Thanks a lot.

Hakik Zaman

Hi Martin,

Thanks for getting back to us.

Please try the following CSS at Appearance > Customize > Additional CSS

@media screen and (max-width: 767px){
form.wvs-loaded td.label{
display: none;
}
}

Hope to hear from you soon.

Thank You

Hakik Zaman

Hi Martin,

Please replace the previous CSS with the following:

@media screen and (max-width: 767px){
form.wvs-loaded td.label{
display: none;
}
.woocommerce.woo-variation-swatches div.product form.wvs-loaded .variations td {
width: 100%;
}
}

Thank You

Martin Braut

Hi Hakik,

thanks a lot. I want make it on desktop too. Can you please provide me the CSS for desktop?

Best regards

Hakik Zaman

Hi Martin,

I want make it on desktop too. Can you please provide me the CSS for desktop?

Please replace the previous CSS with the following:

form.wvs-loaded td.label{
display: none;
}
.woocommerce.woo-variation-swatches div.product form.wvs-loaded .variations td {
width: 100%;
}

Thank You