Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #435221

    Hi there!

    In homepage, I have homepage with full screen slider. When clicking on scroll down arrow, the URL adds itself after_full_slider_0. How can I get rid of this additional URL?

    #435237

    Hi ugursmsk!

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

    a.scroll-down-link { pointer-events: none; }

    Cheers!
    Yigit

    #435245

    I did what you wrote but at that moment, scroll down link does not work!

    #435248

    Hi!

    This is how that scroll down link works, you click it and go to anchor point. Can you post the link to your page? If you have another color section, we can change the URL.

    Cheers!
    Yigit

    #435273

    Hey!

    http://www.amerikada-dogum.net/

    Btw, I have only FullScreen Slider, no color selection. How can I change the after_full_slider_0 URL add?

    #435323

    ?

    #435784

    Hi!

    Not sure what you mean, do you want to change the ID of the element you are navigating to?

    Best regards,
    Rikard

    #436598

    Yes Rikard, I want to change the ID of the element.

    #436700

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_cs(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery( ".home div" ).find('[id*="after_full_slider_0"]').attr('id','your-new-id-goes-here');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_cs');

    Cheers!
    Yigit

    #436735

    Thank you! It works..

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Full Screen Slider URL’ is closed to new replies.