Hi, Is there a way to change the Scroll Down Arrow to a different fontello icon?
Hey hisdi,
Thank you for the inquiry.
Use this code in the functions.php file to adjust the icon of the scroll down arrow:
add_filter('avf_default_icons','avf_default_icons_mod', 10, 1);
function avf_default_icons_mod($icons)
{
$icons['svg__scrolldown'] = array( 'font' =>'entypo-fontello', 'icon' => 'uf106');
return $icons;
}
For more info on how to adjust the icon and find the icon unicode, please refer to this documentation:
— https://kriesi.at/documentation/enfold/icon/#how-to-find-the-icon-unicode
— https://kriesi.at/documentation/enfold/icon/
Best regards,
Ismael