Font Style, Size and Family 
With the exception of the color, all aspects of the way that text is displayed are controlled by the Font Style, Font Size and Font Family fields.

The Font Style field is an amalgam of the font-style and font-weight CSS attributes. Any combination of values from these two CSS properties can be used.

Example values:Unsurprisingly, the Font Size field corresponds to the font-size CSS attribute.

A size can be defined in many different ways, but the most common methods are to specify the height of the font in points (pt) or pixels (px).

Example values:The Font Family field corresponds exactly with a CSS property: font-family.

Font Family specifies the font face used for text. If you are familiar with appropriate values for the deprecated HTML <font face=""> syntax, any value valid as the 'face' of a <font> tag is valid here.

You may specify a single font, or a list of fonts separated by commas.

Comma separated lists are employed to make sure that visitors to your site whose computers do not have the specific font specified installed will still see a font that is something like what you intended. For example, if you set the font family value to tahoma but a visitor did not have the Tahoma font installed, their browser would show your site using the system default font. On the other hand, if you specified the value as tahoma, verdana, arial, sans-serif the browser would traverse the list looking for the first font that it can use.

Note that fonts whose names contain spaces must be enclosed in quotes.

Example values:If values for both Font Size and Font Family are input, vBulletin will combine the values of the three font fields and use the font CSS property instead of listing each property separately.

In practice, this means that the following set of values...
Font Stylebold italic
Font Size10pt
Font Familyverdana, arial, sans-serif
... which normally be listed individually as
    font-weight: bold;
    font-style: italic;
    font-size: 10pt;
    font-family: verdana, arial, sans-serif;
... will instead be output as
    font: bold italic 10pt verdana, arial, sans-serif;
Copyright © 2024 MH Sub I, LLC dba vBulletin. All rights reserved. vBulletin® is a registered trademark of MH Sub I, LLC dba vBulletin.