I have changed the contact form’s name, e-mail and subject fields to Marcellus font. How do I change the message body font?
Please see screenshot here: https://www.dropbox.com/s/24a2tnf9pev22gh/Message%20Font.png
Thanks!!
Hi mattmorse!
Thank you for using the theme. I hope you’re doing great.
Please try this on Quick CSS or custom.css:
#top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
font: 13px "Marcellus", serif;
}
Did you add the google font using Google Font filter on functions.php?
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Marcellus'] = 'Marcellus';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Marcellus'] = 'Marcellus';
return $fonts;
}
Best regards,
Ismael
I originally added it in functions, but then updated the theme and lost it all. I am now using a child theme and doing the fonts via CSS