Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1282194

    HI,

    is there a way to change the “scroll to top) icon? I would like to change the arrow into another icon or arrow

    #1282205

    Hey,

    Thanks for contacting us!

    Please add following code to functions.php file of your child theme

    add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
    
    function avia_replace_standard_icon($icons)
    {
    $icons['scrolltop']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue925');
    return $icons;
    }

    and replace icon code with the the one you would like to use. You can simply hover on icon you would like to use to find the icon code – https://imgur.com/a/ViBH5vW :)

    Best regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.