Hi,
i have two questions if you could help me:
– How do i force Color Section´s height to 65px?
– How can i add more Google fonts to the font list (ex: Open Sans Light)?
Thanks!!
For the font look here: https://kriesi.at/support/topic/add-new-font/?login_error#post-234710
But if someone can help me. I followed the steps and it doesn’t show in the the list for me:
add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
function avia_add_heading_font($fonts)
{
$fonts[‘Titillium Web’] = ‘Titillium+Web:400,300,200,600’;
return $fonts;
}
add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
function avia_add_content_font($fonts)
{
$fonts[‘Titillium Web’] = ‘Titillium+Web:400,300,200,600’;
return $fonts;
}
Let me know if that works for you….and in that case I would be the only one with this issue?
Hi,
@zoiestudio to make a fixed height color section set a custom ID (es: custom_section) to that color section and add this to Quick CSS:
#custom_section {
height: 65px !important;
}
@asthyanax can you post a link to your website? a temporary admin account would be required too.
Best regards,
Josue
It’s done, i added this code in Plugins > Edit Functions:
add_filter( 'avf_google_heading_font', 'add_custom_font');
add_filter( 'avf_google_content_font', 'add_custom_font');
function add_custom_font($fonts)
{
$fonts['Titillium Web'] = 'Titillium Web:400,300,200,600';
return $fonts;
}
Regards,
Josue
Thank you so much:)
You are welcome, glad to help :)
Regards,
Josue