Adjust line height

Hi,

I’m looking to change the line height to 1.5 but I have no idea how to do that. I’m assume it’s via css but I have no idea how to do that.

Thanks!

Go to Settings > Appearance > CSS Snippets. Then click on the folder icon where when you hover the tooltip says “Open Snippets Folder”. Create a new file in there called custom.css, and in that file add this:

.cm-contentContainer {
    line-height: 1.50;
}

This will only apply line-height 1.5 to your editing content.

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.