What global custom CSS can I add to reduce the font size on my bullet points within the classic text boxes to 22 px?
Hi there,
Please add a class to the text element that contains the list then add this code in the Global CSS (the code below assumed that the class you have added to the text element is the-list)
.the-list ul il {
font-size: 22px;
}
You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.