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?
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
I did what you wrote but at that moment, scroll down link does not work!
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
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?
Hi!
Not sure what you mean, do you want to change the ID of the element you are navigating to?
Best regards,
Rikard
Yes Rikard, I want to change the ID of the element.
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
Thank you! It works..