Hi all,
Just wondering if there is anyone that can help me with text-transform. I’ve looked at the liquid file, identified the text-transforms and changed it to ‘capitalize’ from uppsercase but nothing changed. Not sure if I edited the right code but those are the only text-transform I can see. I’ve looked everywhere and can’t identify. Could it be another code embedded elsewhere?
Basically, I’ve loaded my products to collection page and it’s displaying everything nicely except for title which is in caps lock.
These are the codes I edited:
#nav-tab-info .nav-tabs .nav-item {
text-transform: capitalize;
padding:0;
margin:0 5rem -2px 0;
font-weight: normal;
background-color: transparent;
font-size: 16px;
padding:5px 0;
}
or
{{'products.product.vendor' | t }}: {{ product.vendor }}
{% endif %} {% if section.settings.product_type_enable %}{{'products.product.type' | t }}: {{ product.type }}
{% endif %} {% if section.settings.variant_sku_enable %}{{'products.product.sku' | t }}: {{ current_variant.sku | default:'null' }}
{% endif %} {% if section.settings.variant_available_enable %}{{'products.product.available' | t }}: {% if current_variant.available %}{{ 'products.product.available' | t }}{% else %}{{'products.product.sold_out' | t }}{% endif %}
{% endif %}Appreciate if anyone can help! Thank you so much in advance.