-
What problem does this address?In gutenberg Editor it would be nice to have capability to change the default font size. What is your proposed solution?It would be great to |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Thank you for submitting the issue. On Classic ThemeRegister a style sheet describing the following style via body {
font-size: 20px;
} On Block ThemeYou can configure this in theme.json. {
"version": 2,
"styles": {
"typography": {
"fontSize": "20px"
}
}
} |
Beta Was this translation helpful? Give feedback.
-
I think this issue is more suitable for Discussions. |
Beta Was this translation helpful? Give feedback.
-
Thank you all |
Beta Was this translation helpful? Give feedback.
Thank you for submitting the issue.
You can change the default font size in the following way:
On Classic Theme
Register a style sheet describing the following style via
add_editor_style()
.On Block Theme
You can configure this in theme.json.