Tagged: scroll down arrow
-
AuthorPosts
-
June 7, 2018 at 3:44 pm #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.
June 8, 2018 at 7:28 am #969986Hey akapoun,
Could you post a link to the page in question so that we can take a closer look please?
Best regards,
RikardDecember 2, 2018 at 3:28 pm #1039971Hi
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/iconUnfortunately 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
MichaelDecember 3, 2018 at 5:06 am #1040106Hi 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,
RikardDecember 3, 2018 at 4:07 pm #1040374Hi 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
MichaelDecember 4, 2018 at 6:44 am #1040583Hi Michael,
Great, glad you came up with a solution and thanks for sharing, much appreciated :-)
Best regards,
RikardApril 24, 2019 at 11:01 pm #1094216Hi 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
MaurizioApril 28, 2019 at 6:13 pm #1095064Hi,
@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 -
AuthorPosts
- You must be logged in to reply to this topic.