How do i change the default width

Silverbullet defaults to a shorter line width for all text/notes. I get it and it does look nice but I would prefer to be able to set my own line width as I find the current one too small. Especially for any queries that generate tables with multiple columns.

How do Change the line width?

You can use Space Styles for this: Space Style

Create a page somewhere with a space-style block:

```space-style
html {
  --editor-width: 1400px !important;
}
```

Replace the width there without whatever you want. You can either reload the page or run the System: Reload command to activate the changes.

Thank you very much!
Knew it would be some form of styling but didnt know how to target it correctly. Just started with silverbullet so thank you very much.

To be 100% responsive i modify this config like this:

```space-style
html {
  --editor-width: 100% !important;
}
.sb-header-inside.sb-line-h1 {
    text-indent: 0ch !important;
}
.sb-header-inside.sb-line-h2 {
    text-indent: 0ch !important;
}

.sb-header-inside.sb-line-h3 {
    text-indent: 0ch !important;
}

.sb-header-inside.sb-line-h4 {
    text-indent: 0ch !important;
}

.sb-header-inside.sb-line-h5 {
    text-indent: 0ch !important;
}

.sb-header-inside.sb-line-h6 {
    text-indent: 0ch !important;
}
... other customisations

Thanks for posting your solution!
I was annoyed that the # were overflowing with an editor width to 100%, but this solution fixes this issue :partying_face: