Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #713140

    I need to use the fullwidth slider so that my slider images scale, but it doesn’t have the option to display a downward arrow. is there a way for me to add the arrow?

    #713234

    Hey asinger777!

    Can you please show us an example what you need to do so we ca nunderstand?

    Thanks a lot

    Best regards,
    Basilis

    #713624

    I just want to display the same downward pointing arrow or cursor — V — that tells the user to scroll down to see more. i want to display it on the fullwidth slider. There is currently no option to do that.

    #713642

    Hi,

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your Fullwidth Easy Slider element and give it a custom CSS class (“custom-fws” in example) and then add following code to Functions.php file in Appearance > Editor

    function avia_custom_dpa(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('<a href="#next-section" title="" class="scroll-down-link " aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a>').appendTo('div.avia-fullwidth-slider.custom-fws')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'avia_custom_dpa');

    Best regards,
    Yigit

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