Archived topic
Changing the typography to 'Times New Roman'
2 replies · Started by Thomas on August 14, 2018
How is it possible to change the typography to 'Times New Roman'?
Hopefully there is a simple solution.
Hi there,
This should help:
https://generatepress.com/forums/topic/font-missing/#post-129350
https://generatepress.com/forums/topic/adding-fonts/#post-194323
Tom's code can be added using one of these methods:
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
If you want to skip the Georgia font and use the Customizer, we can overwrite the System Stack font with this function:
add_filter( 'generate_typography_system_stack', function() {
return '"Times New Roman", Georgia, serif';
} );
Then choose "System Stack" in your typography options.
Let me know if you need more info :)