Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #304655

    How can I use this bottom arrow http://kriesi.at/themes/enfold/homepage/transparent-header/ in a color section?

    Only on the slideshow appears?

    thanks in advance,

    • This topic was modified 10 years, 3 months ago by mariorj.
    #304788

    Hey mariorj!

    Thank you for using Enfold.

    It’s actually not possible but you can create a new color section then apply an id to it. Let’s use “first-section” for example. Below, add a new color section called “second-section”. Use this on functions.php to append the scroll down arrow on the #first-section container:

    function add_scroll_down_arrow() { ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('#first-section').append('<a href="#second-section" title="" class="scroll-down-link" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a>');
    	jQuery('#first-section').css('position', 'relative');
    });
    </script>
    <?php }
    
    add_action('wp_head', 'add_scroll_down_arrow');

    Make sure that it links to the id of the color section below the section where you added the arrow, in this case #second-section.

    Cheers!
    Ismael

    #305278

    Hello,

    We would really need exactly the same indicated in “mariorj” post.

    Would you please consider to add this as a default function, I mean to add “scroll_down_arrow” bottom as a default option for any box or color section ?

    Thanks you for considering this suggestion towards future versions.

    Cheers!

    #305715

    Hi!


    @macatokio
    Please request such feature here – https://kriesi.at/support/enfold-feature-requests/
    And feel free to vote other feature requests

    Regards,
    Yigit

    #352940

    Hello Guys!

    I also did this and it works fine for me. But it goes directly to the next section not in a fluent way like with the full-screen slider. What do I have to do for this?

    Greets Tim

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Using the arrow of next section like Home v11 without slider’ is closed to new replies.