Default forum theme too wide
Posted: Sun Oct 26, 2025 8:29 pm
The default theme is nice but the unlimited width makes reading long posts tiring when I have to turn my head ever so slightly for each line to read from side to side on my desktop monitor.
This may be a controversial thing to change for everyone, but setting a max-width of the forum to 1280 pixels makes it a lot more comfortable to read for me. Here's a short userstyle snippet if anyone else feels the same:
(The search field seems to be floating on its own and doesn't respect this max-width, but oh well. Works for me
)
This may be a controversial thing to change for everyone, but setting a max-width of the forum to 1280 pixels makes it a lot more comfortable to read for me. Here's a short userstyle snippet if anyone else feels the same:
Code: Select all
@-moz-document domain("forum.mattkc.com") {
.wrap {
max-width: 1280px;
}
}