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).
1 Like
No worries at all. We are here to help. Anyway, please follow the instructions below
- From your Admin store, go to Online store > Themes > Click Actions > Edit code
- Open the Asset folder, and find the theme.scss file.
- Add the code below.
.blog__title-link a {
font-family: sans-serif;
text-transform: capitalize;
}