Change the style of the font for blog titles

I’d like the text for the blog titles to be a simple sans serif and not uppercase. I’ve tried targeting the CSS for it, but can’t get it to work (I’m a beginner with CSS anyway).

Page: https://kdigitalstudio.com/blogs/news

1 Like

Hi @kdigitalstudio

No worries at all. We are here to help. Anyway, please follow the instructions below

  1. From your Admin store, go to Online store > Themes > Click Actions > Edit code
  2. Open the Asset folder, and find the theme.scss file.
  3. Add the code below.
.blog__title-link a {
    font-family: sans-serif;
    text-transform: capitalize;
}