-
AuthorPosts
-
August 26, 2014 at 4:02 pm #309387
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!!
August 27, 2014 at 5:01 am #309630For 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?August 28, 2014 at 4:33 am #310183Hi,
@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,
JosueAugust 28, 2014 at 4:54 am #310195This reply has been marked as private.August 28, 2014 at 4:58 am #310197It’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,
JosueAugust 28, 2014 at 5:24 am #310210Thank you so much:)
August 28, 2014 at 5:25 am #310212You are welcome, glad to help :)
Regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.
