Hi,
1) I believe I saw a scroll button somewhere in your theme demo, just can’t find it! Could you tell me how to add a scrolling class to a regular button?
2) Also, is it possible to have submenu items, that link directly to a section of a page? I have basically 6 galleries (which I refer to as “sections” hereinafter) on one page. In order to save clients all the scrolling and browsing, I would like to add submenu items that, upon clicking, opens the gallery page and scrolls directly to the respective section.
3) I would like to add “Raleway” Google font to your theme, how can I do that and how do I select it in backend?
Thanks for your assistance!
Cheers,
Gabe
Hi chiummog!
1.) You can apply the anchor menus. Please refer to this link: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
2.) You can do the same as step 1.
3.) Raleway is already included for the heading font on Enfold > Styling. Add this on functions.php if you want to use it for the body font:
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Raleway'] = 'Raleway';
return $fonts;
}
Regards,
Ismael