How can I make editor width wider?

What I’m trying to do

I have a big screen and I’m writing something with many layers of nested bullet points. I’d like to make my editor wider so that I can take advantage of more of my screen/not have later nested items be across multiple lines

Things I have tried

I tried this forum post but it didn’t actually make the editor wider. I tried a few reddit code snippets too with no luck.

1 Like

Your theme may have options built-in for changing the editor line width. See →

If not, you could use one of these CSS snippets →

/*- editor line width - default 700px -*/ 
body {
  --file-line-width: 900px;  
}

/*- editor line width - fills entire editor -*/
body {
  --file-line-width: 100%;
} 
4 Likes

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