Forum

Thread tagged as: Question

SimpleMDE text-size in textarea

Hi,

Anyone know how to resize the text size for text areas that use SimpleMDE? I'm referring not to any kind of styling, like headers, but the actual text size used within the editor itself in Perch. I'd like to boost the size to make editing easier for clients—the default size is quite small.

Thanks!

Franz Neumann

Franz Neumann 0 points

  • 2 years ago
Hussein Al Hammad

Hussein Al Hammad 105 points
Registered Developer

Hello Franz,

Add a custom css file to the control panel (here's how: https://docs.grabaperch.com/api/custom-ui/) and set font-size for .simplemde-wrap:

.simplemde-wrap {
    font-size: 1.15em;
}

Thanks! Worked wonderfully.