I need the paragraph font size to be smaller. I’ve been using H4 instead of solving the paragraph size problem.
here where it says pre-orders are closed, it’s just too big, incongruous to the heading sizes.
I need the paragraph font size to be smaller. I’ve been using H4 instead of solving the paragraph size problem.
here where it says pre-orders are closed, it’s just too big, incongruous to the heading sizes.
Hi @ElRat You can use this css to decrease the font size of the paragraph.
.rte>*:first-child {
font-size: 16px;
}
that worked, thank you!