Tagged: googlefonts, preview, writing pattern
@sitesme: you see my image above – on Enfold Options Page.
These links work with the enfold integrated Google Fonts. But it will show the preview with a longer delay – because all fonts had to be loaded on that preview page.
And as Ismael mentioned you can see the preview on top. – thats why this section has the topic: A rough preview of the frontend
btw. to better evaluate the font – you can increase the font-size by adding this to your child-theme functions.php:
function admin_head_mod() {
echo '<style type="text/css">
#avia_options_page .live_bg_wrap .main_h3 { font-size: 36px !important; }
#avia_options_page .content_p, #avia_options_page .bg2 { font-size: 24px; }
</style>';
}
add_action('admin_head', 'admin_head_mod');
__________________________