• Resolved saxcbr

    (@saxcbr)


    Is it possible to duplicate sliders control on top of the page?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Aurovrata Venet

    (@aurovrata)

    Good question.

    I am not sure.I use the Glider.js plugin. I reckon it might be possible, but haven’t explored it

    Plugin Author Aurovrata Venet

    (@aurovrata)

    Do you have a project that might be able to sponsor this functionality?

    Thread Starter saxcbr

    (@saxcbr)

    I have a big project in development to make online quotes using your plugin to have a pdf as a signed contract.
    I can give you the site address privately (let me know how!)
    For now I have tried using jQuery to move up but I can’t get it to work.

    $( $(“.slider-prev”) ).insertBefore( $( “.glider” ) );
    $( $(“.slider-next”) ).insertBefore( $( “.glider” ) );

    Thread Starter saxcbr

    (@saxcbr)

    ok, I found a way to make them always visible using css
    It’s not perfect, it can be improved, but it works ??

    .cf7sg-slider-section .slider-control.slider-prev {
        float: initial; 
        position: fixed;
        top: 150px;
        left: 5%;
    }
    .cf7sg-slider-section .slider-control.slider-next {
        float: initial;
        position: fixed;
        top: 150px;
        right: 5%;
    }
    Plugin Author Aurovrata Venet

    (@aurovrata)

    ok, I found a way to make them always visible using css
    It’s not perfect, it can be improved, but it works ??

    thanks for posting your solution. I will take a look at it when I have some time and see if I can improve on it ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Slider control on top of the page’ is closed to new replies.