Hello Shopify, I recently started building a Shopify store for a client and have uploaded over 200 products (all individually) without importing any .csv or .xl file. Since the client had provided me with an Excel file to upload her products, the excel file was in all CAPS (capitals) and I copy-pasted the product descriptions with all the other products’ properties. The client now wants me to change the product descriptions to regular font.
Is there any way to change the product descriptions in bulk? because changing them one by one will take me days…
You can use css properties to capitalize the text but since you have all the capital letter the css won’t work on this to do this you need to work on some js code as well css.
If you want everything in lowercase, the please go to theme.css ,
find
.Rte {
word-break: break-word;
/* Prevent long words to go outside the container /
/ Simple, minimum clearfix added to every RTE text to avoid issue with float */
}
and replace it with
.Rte {
word-break: break-word;
text-transform:lowercase;
/* Prevent long words to go outside the container /
/ Simple, minimum clearfix added to every RTE text to avoid issue with float */
}.
Please note that this is change everything to lowercase, even if you need some characters on uppercase.
If you want the mix of uppercase and lowercase, better to change it from Admin.