Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #969675

    Hi!
    I create a full screen slider at the welcome page of my site.
    On the bottom of the full screen slider should be an scroll down arrow; I´ve seen you have the functionallity, but I want to insert an individual image instead of the default arrow.
    Is there a way to insert my own image?

    Thank you.

    #969986

    Hey akapoun,

    Could you post a link to the page in question so that we can take a closer look please?

    Best regards,
    Rikard

    #1039971

    Hi

    Currently looking for a solution for the exact same issue. Well, almost – my arrow down would be for a color section, but I guess the behaviour is the same.

    So I found this helpful resource:
    // https://kriesi.at/documentation/enfold/icon

    Unfortunately the troubleshooting section does not help me, as the following code (new icon) I want to use for the scroll down arrow just makes it disappear for some reason:

    #top .scroll-down-link {
    content:"\e800";
    font-family: 'entypo-fontello';	
    position: absolute;
    left: 0;
    }

    Do you know why that happens Rikard? Has this code changed in the meantime?

    Thank you very much and best regards
    Michael

    #1040106

    Hi Michael,

    I think that CSS should work, could you post a link to where we can see the results you are getting please?

    Best regards,
    Rikard

    #1040374

    Hi Rikard

    I actually removed the little CSS snippet from above and added the following jQuery to functions.php instead:

    // Function to let the arrow down disappear after click or on scroll
    add_action('wp_footer', 'ava_disappear_after_click_script', 9999);
    function ava_disappear_after_click_script() {
        ?>
    <script>
    $(document).ready(function(){
        $(".scroll-down-disappear").click(function(){
            $("a").addClass("scroll-down-disappear");
    		$("#av-icon-char-michael").hide();
        });	
    	$(window).scroll(function() {
        if ($(this).scrollTop() > 0) { // can be whatever, 0 refers to the top space you allow
            $("#av-icon-char-michael").hide(); // Hide your element
        }
    	});
    })(jQuery);
    	
    </script>
        <?php
    }
    
    ?>

    This is a nice workaround and works like a charm for me.

    Best and thanks
    Michael

    #1040583

    Hi Michael,

    Great, glad you came up with a solution and thanks for sharing, much appreciated :-)

    Best regards,
    Rikard

    #1094216

    Hi Rikard,
    I tried to replicate what above mentioned but with negative result.
    What can I do to create a Scroll Down Arrow on a LayerSlider image?

    Best Regards
    Maurizio

    #1095064

    Hi,

    @amepro
    , Please try this solution or please include admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

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