Tagged: fullscreen slider
Hi,
the Scroll Down Button on a Fullscreen Slider on my page does not work anymore. All worked fine but today this problem ocurred without making any changes.
Thx Simon
Hi Yigit,
there is no option to set a link. It is an option in the fullscreenslider:
Display a scroll down arrow
Check if you want to show a button at the bottom of the slider that takes the user to the next section by scrolling down
Hey!
Do you mind creating a temporary admin login and posting it here privately?
Best regards,
Yigit
Hi!
Please add following code to Functions.php file
function add_custom_target(){
?>
<script>
jQuery(window).load(function(){
jQuery('.home a.scroll-down-link ').attr('href','#portfolio');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_target');
Cheers!
Yigit
works! thx