Viewing 24 posts - 1 through 24 (of 24 total)
  • Author
    Posts
  • #416982

    Hello,

    on Enfold preview Topic i had seen a website with a other scroll down “Arrow” with text.
    Can you please tell me, how we can make this also ?

    http://sermonbumpers.com/

    Dandy

    #417143

    Hi Manuel!

    Please add Fullscreen Slider element to your page and then check “Display a scroll down arrow” – http://i.imgur.com/1oXAOn2.png

    Cheers!
    Yigit

    #417158

    Hi Yigit,

    thx for your answer, but you understand me wrong :-) . I use a full slider with scroll down arrow.
    This works, but i would change the arrow like the site which i had posted.
    A text with “scroll down”, that hide when hover.
    And a other “arrow” like a mouse.

    #417175

    Hi!

    Please refer to this post to change scroll down icon – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
    then please add following code to Functions.php file in Appearance > Editor

    
    function add_custom_text(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery( "a.scroll-down-link" ).prepend( "<span class='scroll-down-text'>Scroll down</span>" );
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_text');
    

    and following code to Quick CSS in Enfold theme options under General Styling tab

    .scroll-down-text:hover { opacity: 1; }
    .scroll-down-text { opacity: 0; }

    Cheers!
    Yigit

    #417206
    This reply has been marked as private.
    #417647

    Hi!

    You can remove the animation with this:

    #top .scroll-down-link {
      -webkit-animation: none !important;
      animation: none !important;
    }

    Best regards,
    Ismael

    #417661

    Hello Ismael,

    when i do this, than the text and the arrow button stops with animation.
    But i will only stop animation for the text.

    #417877

    Hi!

    Please remove the codes we posted and go to Enfold/config-templatebuilder/avia-shortcodes and open slideshow.php file and find

    $html .= "<a href='#next-section' title='' class='scroll-down-link' ". av_icon_string( 'scrolldown' ). "></a>";

    and change it to

    $html .= "<span class='scroll-down-text'>Scroll down</span><a href='#next-section' title='' class='scroll-down-link' ". av_icon_string( 'scrolldown' ). "></a>";

    then add following code to Quick CSS

    span.scroll-down-text {
      height: 60px;
      width: 80px;
      margin: 0px 0 0 -40px;
      position: absolute;
      left: 50%;
      bottom: 0px;
      color: #FFF;
      text-align: center;
      font-size: 20px;
      z-index: 100;
      text-decoration: none;
    }

    Regards,
    Yigit

    #417964

    Hello Yigit.

    I had done all steps, but the Text is on the wrong place.
    It is left on the begin of the Slider with white backgroundline

    • This reply was modified 9 years, 8 months ago by Dandy.
    #417970

    Hi!

    It seems like you have not added custom CSS code i posted in my previous post so text is appearing above slider.

    Regards,
    Yigit

    #417976


    i have add your code in quick css and it shows at the begin of the slider.

    • This reply was modified 9 years, 8 months ago by Dandy.
    #417977

    Hey!

    Please create a temporary admin login and post it here privately so we can look into it

    Regards,
    Yigit

    #417995
    This reply has been marked as private.
    #418017

    Hey!

    Please review your website now. You had some lines with ### in your Quick CSS code, i removed them. Original content of Quick CSS can be found here if needed – http://pastebin.com/mfzD99Uv

    Regards,
    Yigit

    #418020

    Hello Yigit,

    i see now the text is on right position.
    But now i can not push the Arrow that it scroll down.

    #418037

    Hey!

    I have added following code to functions.php file

    function add_custom_slider_text(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery( "a.scroll-down-link" ).hover(function() { jQuery("span.scroll-down-text").toggle()});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_slider_text');

    Please review your website now

    Regards,
    Yigit

    #418048

    Hello Yigit,
    looks very nice now :-)

    I have two litte questions now. When there is a new update for Enfold. than it overwrites the edited slideshow.php
    Is it possible to include this in my Child theme that i must not change this line after every Update?

    ———————————————-

    On other Topic i post that the scroll up button does not show on iphone.
    You postet this code:

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
      display: block!important;
    }}

    But this does not work. Can u look why this is not show on iphone?

    • This reply was modified 9 years, 8 months ago by Dandy.
    #418060

    Hey!

    1- Yes, please see – http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
    2- There was an extra ” ;} ” in your Quick CSS, i removed it and it seems to be working fine :)

    Regards,
    Yigit

    #418077
    This reply has been marked as private.
    #418085

    Hi!

    Yes, you should create a new folder called ‘shortcodes’ inside wp-content/themes/enfold-child folder and copy modified slideshow.php file ( not only the line but the whole content of it ) and paste inside that ‘shortcodes’ folder

    Regards,
    Yigit

    #418088
    This reply has been marked as private.
    #418091

    Hi!

    If there happens to be any change on slideshow.php file, you can use a website like this one – https://www.diffchecker.com/ to check the differences and update the file then apply the changes once again. But files like slideshow.php will not be updated so often unless there are new features added to them.
    Unfortunately, there is no other solution.

    Regards,
    Yigit

    #418095
    This reply has been marked as private.
    #418098

    Hey!

    You are welcome Dandy, we are always happy to help!
    It definitely looks great : )
    Let us know if you have any other questions or issues!
    #TeamKriesi

    Best regards,
    Yigit

Viewing 24 posts - 1 through 24 (of 24 total)
  • The topic ‘Fullscreen Slider other Scroll down arrow’ is closed to new replies.