• Resolved the666th

    (@the666th)


    I moved the position of the “previous/next” buttons bellow the image, and I would like to add the functionality of the “next” button to the actual image as well, is it possible?

Viewing 4 replies - 1 through 4 (of 4 total)
  • I don’t understand, can you provide a link?

    Kadence Themes

    Thread Starter the666th

    (@the666th)

    for example on this page here , in the image slider, is it possible to have the same functionality as the “next” button when the image is clicked?

    I see, this it’s a simple thing. There are a couple ways you could do it. One would be to add code to the file templates/home/flexslider.php

    Another is to background prosition your arrows to the bottom and make the links extend the hight of your slides. You can add this to your custom css box, it’s not exactly what you want but it will get you closer:

    .flex-direction-nav a {
    opacity: 0;
    top: 0;
    width: 60px;
    padding-bottom: 105px;
    height: 100%;
    }
    .flex-direction-nav .flex-next {
    background-position: 100% bottom;
    }
    .flex-direction-nav .flex-prev {
    background-position: left bottom;
    }

    If you used two images for your arrows you could make the width 50% and that would pretty much to exactly what you want.

    Kadence Themes

    Thread Starter the666th

    (@the666th)

    Thank you very much, this is perfect! 😀

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Click on the image to go to the next one’ is closed to new replies.