Skip to main content

Modify Community Font

Anyone know how I would go about modifying the body font of fluent community? I think this should be included in the customize feature in tabs honestly.

Stuart McKelvie

Add a code snippet with something like this

body *Β {

font-family: TimesNewRoman !important;

}

Ceez Vision

Maybe I'm missing something... here's a screenshot of the code snippet Im applying.

Stuart McKelvie

Curtis MarshallΒ it's a specificity issue. You need to add !important to the font-weight line to override the default stylesheet. Just know this will set all font to the same weight (including headings and body text).

Ivo PΓΆtzsch

i do this with some custom lements in FC e.g. the Room Description:
.space_meta_item .meta_desc{
font-size: 0.8em!important;
}