Hello,
How do I unbold headings??
Hi icebox10!
All headings? If so, please add following code to Quick CSS in Enfold theme options under General Styling tab
h1, h2, h3, h4, h5, h6 { font-weight: normal !important; }
Regards,
Yigit
Thanks!
I would like to use the font “raleway” throughout the entire site – but it’s not an option for body text. What can I do to apply it?
Hey!
Please see – http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/
Best regards,
Yigit
awesome, thanks! Not sure if I’m missing something, but I cannot find the child theme in the downloadable folders. Where is it located?
i found the child theme but what I am doing does not seem to work…
Hey!
Add this to your child theme functions.php file.
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Raleway'] = 'Raleway:400';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Raleway'] = 'Raleway:400';
return $fonts;
}
And then select “Raleway” in the font selection in the Enfold settings and save.
Best regards,
Elliott