Increasing max-width on blog posts

EDIT: Ok, with the help of ChatGPT and your post, I found it. I removed everything from /assets/css/_custom.scss and put this in

.page {
    max-width: 1200px;
    /* adjust as needed */
    margin: 0 auto;
}

Ah, yeah I tried messing around with that file too.

So I just tried

.page {
        width: 100% !important;
}

And this

@media only screen and (max-width: 1440px) {
    .page {
        width: 100% !important;
    }
}

In the /assets/css/_custom.scss file. I’m running 1440p. And neither seemed to work

1 Like