Font Choice IN Threads

I don’t know if this is how it’s supposed to be, but for some reason, when reading posts, the font is a serif font, which is harder to read on screens. Great for printing, but near useless for digital mediums.

Was this a decision made during the upgrade process or was it just an issue introduced?

I would recommend checking your style CSS files to ensure that the font for posts is set to a sans-serif named font with “sans-serif” itself as a fallback.

*Edit: I made this post Arial just to show how much easier this is to read.

Completely agree. I’m sure it’s just a result of the default skin. I don’t think they consciously chose it. I don’t mean to keep whoring this, but I did an edit that’s on sans-serif by default.

I’m hoping that there’s a way to make the default a non-serifed font.

I even found where the issue is, if you can fix it there.


.message .messageContent
    {
        min-height: 100px;

    }

        .message .messageText,
        .message .signature
        {
            font-size: 11pt;
font-family: Georgia, "Times New Roman", Times, serif;
line-height: 1.4;

        }