Page 1 of 1

Forum font size

Posted: Sun May 26, 2024 5:06 pm
by Grogan
I like this style, DVGFX, but I've been finding the font sizes pretty anal, especially in the [ code ] [ /code ] tag fields.

So I gave it a slight bump of 5%, globally, in the default DVGFX style. I didn't touch the Prosilver ones, or the DVGFX-fixedwidth (which was actually how the style was, I changed it... that should be up to the client)

You will most likely have to Shift-Refresh in your browser to banish the old .css, browsers are extremely stubborn with those files.

A slight bump like that shouldn't hurt anything, but if anybody notices anything outside of margins or truncated or anything, please let me know.

I also may be guilty of adjusting things because they look shitty with MY fonts. I don't have "arial" or "Trebufuckingchet" or any stupid Windows fonts, it's font substitutions and styles for me.

Sound off if you don't like this (or anything I do for that matter).

----------------------------------------------------------------------------------------------------------------------------------------------------------------------

Why globally? Because this .css is silly. First they start out like this:

Code: Select all

html {
        font-size: 100%;
        /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
        height: 101%;
}
Great, I'm on board with that.

Then they go and do this:

Code: Select all

body {
        font-family: Verdana, Helvetica, Arial, sans-serif;
        font-size: 62.5%;
        line-height: normal;
        margin: 0 auto;
        padding: 0;
        word-wrap: break-word;
        -webkit-print-color-adjust: exact;
}
So then, right off the hop they are scaling the fonts to 62.5%, then they proceed to fuck with that using various syntax (px, percent, or for example 1.3em with corresponding line heights) and some of it inheriting. So it's just easier to bump it to 67.5% (I may even cut that down a few percent yet if it's too big for others' display and font configuration) in the body stanza where it will be relative)

Re: Forum font size

Posted: Sun May 26, 2024 5:41 pm
by Grogan
Hahah... damn, I'm not used to fonts anymore. I started up my Windows 11 virtual machine to get a look at this in Windows where I actually have the fonts and while the sizes are good, I hate the fonts. Arial and Trebuchet bite the weenie. I'm used to variations (both within the font family and font matching styles) of the Deja Vu font family for TTF fonts. I looked at it in Microsoft Edge and I installed Firefox (pretty much the same)

I can do something about that if anyone else is bothered (Looks OK to me on Linux with my font)

Re: Forum font size

Posted: Sun May 26, 2024 6:44 pm
by Zema Bus
The size looks good to me.

Re: Forum font size

Posted: Sun May 26, 2024 7:20 pm
by Grogan
It sure fixed things for me, I was even having trouble discerning commas from dots in forum posts. I'd think I made a typo and I'd go in to edit and see that it was a comma after all etc. This especially helped with text between the code tags for me, too.

Part of it is this monitor, though. It's a great one for games, images, video, everything.. but text, not so much. It's like no DPI setting is right for fonts. An identical font configuration (and resolution, DPI) on the other computer looks better. The fonts are shaped slightly differently, different weight etc. It doesn't look bad, but I'm very, very fussy on fonts. It's not even so much what looks "better" but what I'm used to. I'm going to have to start experimenting with exacting DPI values on the command line, for example "startx -- -dpi 96x95" and such (it may need different dimensions if I want to correct font shape).