Where can I find the list of all CSS selectors to set the fonts myself?
I want to use two fonts on my site, but some elements don't "react" when I change the font style or size. If I had the list of all CSS selectors, I'd know which elements I have to define and could "divide" them between the two fonts.
e.g. I thought that the blog posts title is a H1, but it's not, so I tried .post-title, but it also doesn't work. And I could find an article on that in the documentation.
Where can I find the list of all CSS selectors to set the fonts myself?
I want to use two fonts on my site, but some elements don't "react" when I change the font style or size. If I had the list of all CSS selectors, I'd know which elements I have to define and could "divide" them between the two fonts.
e.g. I thought that the blog posts title is a H1, but it's not, so I tried .post-title, but it also doesn't work. And I could find an article on that in the documentation.
Thanks a lot for the support! :)
Hi there,
There isn't any list of selectors but what you can do it to learn how to get class name of elements Inspect Style .
Thank you.