Is there an option for a less-narrow layout?

https://sh.itjust.works/post/290635

Is there an option for a less-narrow layout? - sh.itjust.works

So I recognize that these preferences are going to be different for everyone. I’ve been enjoying my time here thus far but occasionally I look at other instances to see what their native look and feel is like, or to more easily see if they have communities I’m interested in subscribing to. Most of them look pretty similar but I’ve only just looked at kbin.social and I find the layout far more attractive. More specifically, it’s not squished to take up a fraction of my widescreen monitor, and the text isn’t far larger than it needs to be. I’m not terribly interested in picking up and moving just for the sake of readability, so it would be nice if there were more options we could implement locally. I don’t like bringing attention to deficiencies without having anything useful to contribute, but if I knew a way around this problem I would have implemented it, and I feel others could benefit from this topic being raised. I would love to hear what you think.

I get what you mean. It's not a big deal to me, but coming from something like old.reddit it's definitely not as nice IMO. Here is a sub that has some scripts you can use with the tampermonkey, etc. to change the appearance of the site. There's a guide Here with how to actually use them. Not a perfect solution, but if you're not intent on waiting (potentially for a while) it's your best bet to getting what you're looking for.
Lemmy Plugins & Userscripts - sh.itjust.works

A general repository for user scripts and plugins used to enhance the Lemmy browsing experience. Post (or cross-post) your favorite Lemmy enhancements here! General posting suggestions: - Preface the submission with the type of enhancement - ex: [UserScript]. - Include a screenshot of the enhancement in use (where possible) - Indicate the requirements for use (eg, greasemonkey, stylus, etc.) Thanks!

Yeah, I expected to be left to my own devices on this, but I figured the community is small enough that I should try to start a discussion where I see the opportunity for one. Ultimately I ended up learning how to make an extension named Stylus override the font family and size on the website. I find a lighter and smaller font does wonders for readability. The width isn't really a problem on it's own - I didn't realize how much I had the website zoomed out just to address the font problem, and it's very comfortable at 100-110% standard width.

In case anyone wants to follow my footsteps, my Stylus rule is very simple and easily modified for other websites.

@-moz-document url-prefix("https://sh.itjust.works/") { *{ font-family: b612; font-size: small; } }

My font of choice is b612, which was designed for readability in use on aircraft displays. Use your preferred font and modify the value of font-size as needed.