Hi there
Are we able to change the font of this circle label to helvetica light? It’s the label created from WooCommerce Advanced Product Labels.
Hey tankerhq,
Please try the following in Quick CSS under Enfold->General Styling:
.woocommerce-advanced-product-label {
font-family: 'Helvetica light' !important;
}
Best regards,
Rikard
Hi Rikard
Thanks for that. It seems to change it to a random font?
Any other ideas about what I could do?
Thanks
Chrissy
Hi Chrissy,
If Helvetica is enabled, you should be able to use it, try to use this code:
.woocommerce-advanced-product-label {
font-family: 'Helvetica', Arial, sans-serif
!important;
font-weight: 300;
}
I am assuming you have a font called Helvetica, you can change the Arial and sans-serif which are fallbacks if Helvetica isn’t available or couldn’t be loaded. You got a random font above because there’s no fallback fonts in case the helvetica isn’t loaded, Hope this helps.
Best regards,
Nikko