Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1489489

    Hi,
    I have add the arrow but can´t see it.
    Could you help me?
    Thanks advance,

    BR,

    Antonio.

    #1489514

    Hey Antonio,

    Thank you for the inquiry.

    We are not seeing the scroll down arrows in the sections. Please make sure that the Styling > Scroll Down Arrow > Display a Scroll Down Arrow option is enabled.

    Screenshot-2025-09-24-at-12-00-46-PM

    Best regards,
    Ismael

    #1489525

    Hi Ismael,

    Sorry I confused with the border down arrow.
    It is possible to change the arrow to a png?
    Many thanks,

    BR,

    Antonio.

    #1489548

    Hi,

    Thank you for the update.

    You can try setting the png image as the background of the scroll-down link:

    #top .scroll-down-link.avia-svg-icon {
        background-image: url('image.png');
    }
    
    #top .scroll-down-link.avia-svg-icon svg {
        display: none;
    }

    Let us know if you need more info.

    Best regards,
    Ismael

    #1489560

    Hi Ismael,

    Works perfect! Many thanks,

    BR,

    Antonio.

    #1489562

    or – if you like to replace it by a different svg graphic – you can do it by an uploaded graphic to media-library:

    function avia_replace_default_icons($icons){
     $icons['svg__scrolldown'] =  array( 'font' =>'svg_wp-media-library', 'icon' => '50913');
     return $icons;
    }
    add_filter('avf_default_icons','avia_replace_default_icons', 10, 1);

    change the icon ID to your file id
    you can find the attachment-ID best in media-library list-view
    or in grid-view if you open the attachment-details ( look to the url that is opened )

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