You can use the custom css section in the ACP to customize it, just give the navigation items a custom class in the class field. Then use css to target that.
How to change font of persona theme
Moved
Technical Support
-
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;
-
@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!