Change all heading font to uppercase

I would like to change all of my ‘heading’ font to uppercase. So whereever this font is used (Josefin Sans Semibold), I want it to show as uppercase. Please could someone help me to do this as I am not familiar with ccs etc. Many thanks.

@sfths ,
Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code above


Thank you!

Hello @sfths

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

h1, h2, h3, h4, h5, h6 { font-family: 'Josefin Sans', sans-serif !important; text-transform: uppercase !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.