Change product title to all caps

I’m trying to change my product titles for my collections across the site to be all caps, as well as some other style things that I’m trying to incorporate. So I started on the collections page and I tried adding this code to my theme.css sile, and I don’t know where I went wrong:

.a.type-body-regular.mt3.mb0{
letter-spacing:1px;
text-transform:uppercase;
color:#656262;
}

I’m working with the Lorenza theme, this is my site:

Store: https://66cdcb-86.myshopify.com/

Password: chohme

Try this this instead your

body .type-body-regular{
  letter-spacing:1px;
  text-transform: uppercase !important;
  color:#656262;
}

HI @jasminsharp97 ,

I have reviewed your requirement, you just need to edit css script and the issue will be resolved. You can follow my instructions!

Step 1: Go to Admin → Online store → Theme > Edit code:

Step 2: Search for the file theme.css. And add this code snippet to the end of the file.

h2.type-body-regular.mt3.mb0 {
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #656262 !important;
}

Step 3: Save and reload page.

=>> The result:

I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.

Have a nice day, my friend!