In CSS, I can only edit text font using “.rich-text” and “.rich-text__text”, but these options edits all text elements of my page. I need to edit it individually.
you can edit text individually by targeting elements by tag name, class, etc. For example you can use different font in different element tag on a page.
p {
font-family: “Arial”, sans-serif;
}
h1 {
font-family: “Georgia”, serif;
}
You need to pair it with a custom class to target specific element.
This topic will help: