How can I change capitalized product titles to normal casing?

Hello, I want to make the capitalized letters of the product titles in the categories (when you are in the product the letters are normal) to normal. In other words from “Product Title One” to “Product title one”.

I attach a screenshot of the products in categories with capitalized letters: http://prntscr.com/1l3dcfw

I read about this issue and I saw that I should edit the code “text-transform: capitalize” to “text-transform: none” but I tried and nothing happened. Also, I tried to delete “text-transform: capitalize” from all places I found it but nothing happened again.

Thank you in advance!

@ppg899191

Please share your shop URL!

Thanks!

1 Like

Tank you for your fast answer @dmwwebartisan .

URL: https://biju-bg.com/

Pass: biju

The theme is Kalles, by the way.

@ppg899191

Please add the following code at the bottom of your assets/theme.css file.

.nt_pr h3.product-title {
    text-transform: none !important;
}

Thanks!

1 Like

Thank you very much! It worked as a charm!

1 Like