How to change font of persona theme
-
What font are you looking to use? It's definitely possible, we changed the font in Harmony theme.
-
-
@julian said in How to change font of persona theme:
I can look into the font, I think we used to include fonts from Google Fonts, but now we just fall back to system font
CSS does the job for font changing
Before
After
Will check what's fitting also regarding font size and check on how to get rid of capitalization.
Edit: I guess overwritting h3 ain't possible as it's already defined in the theme?
text-transform: none;
-
@schajuli said in How to change font of persona theme:
Edit: I guess overwritting h3 ain't possible as it's already defined in the theme?
Should still be possible if you use the
!important
flag in CSS - for exampleh3 { text-transform: none !important; }
-
@phenomlab said in How to change font of persona theme:
Should still be possible if you use the !important flag in CSS - for example
Ah thx, good to know!