Expand body width of Journal theme

Hi, how can I expand the width of the content itself to be as wide as the headers nav? I’ve tried inspecting but couldn’t figure it out.

The current post width is designed for an optimal line length, which is important for providing the best reading experience. Read more about line length: Line length | Butterick’s Practical Typography

That’s the reasoning behind why the width is designed as it is. If you want to change it, though, you’ll need to add this code to Code InjectionSite Header:

<style>
  .gh-canvas > * {
    grid-column: wide;
  }
</style>
1 Like

Thanks Ryan! I’ll keep the current width then.

1 Like