Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7702323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T23:12:05+00:00 2026-05-31T23:12:05+00:00

I’m effectively trying to have the FlexSlider be hidden, except for some controlling thumbnails.

  • 0

I’m effectively trying to have the FlexSlider be hidden, except for some controlling thumbnails. When the thumbnails are clicked, the FlexSlider fades in and slides to the appropriate corresponding slide.

The main problem I’m having is that when the FlexSlider is hidden, the controls are hidden as well. Is there a way to separate the two, so that I can have the controls (represented by a series of dots in the FlexSlider demo) by permanently visible? I could then attach an onClick / fadeIn handler that coul have the slider go to the correct slide.

I’m currently using the ‘External Scaffold’ method, found on GitHub, to use a custom Manual Controls container, because it seems like it freed slideTo(), which I think is where my problem lies, but I am not 100% sure. This ‘External Scaffold’ by StephenWil can be found here: https://github.com/stephenwil/FlexSlider/blob/master/jquery.flexslider.js

However, this ManualControls method also works: jquery Flexslider manual controls is not working


Has anyone else been trying to achieve a similar result? I’ve not found a pop-up slider as I am describing but I think it is a desired functionality for many people (and their clients!).

I’ve put a running example on this JS Fiddle to check out:
http://jsfiddle.net/uxCzq/

You can see the ‘dots’/navigation poking out at the bottom-left hand side of the screen, but when you hide the Slider, the navigation also disappears despite living outside the containing Slider div.

Can anyone help me out?? I would be indebted to you!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T23:12:06+00:00Added an answer on May 31, 2026 at 11:12 pm

    I’ve been doing something on a client site that sounds very similar to the effect that you’re trying to achieve. I started off on the same route you have with the external controls method but that didn’t give me quite enough flexibility.

    My solution was to do the following (sorry – would have forked your jsfiddle but figured this would be quicker and cleaner.

    First set up markup:

    <a rel="0" class="slide_thumb" href="#">slide link 1</a>
    <a rel="1" class="slide_thumb" href="#">slide link 2</a>
    <a rel="2" class="slide_thumb" href="#">slide link 3</a>
    
    <div class="flexslider">
        <ul class="slides">
            <li>
                <img src="demo-stuff/inacup_samoa.jpg" />
                <p class="flex-caption">Captions and cupcakes. Winning combination.</p>
            </li>
            <li>
                <a href="http://flex.madebymufffin.com"><img src="demo-stuff/inacup_pumpkin.jpg" /></a>
                <p class="flex-caption">This image is wrapped in a link!</p>
            </li>
            <li>
                <img src="demo-stuff/inacup_donut.jpg" />
            </li>
            <li>
                <img src="demo-stuff/inacup_vanilla.jpg" />
            </li>
            <li>
                <img src="demo-stuff/inacup_vanilla.jpg" />
            </li>
        </ul>
      </div>
    

    Note the rel attribute on the links – we’ll use them below. Also note that the values start from 0 – this matches the values for the slides (e.g. the first slide is 0, the second is 1 etc).

    You should set the visbility to none on the flexslider div in your css. (a more accessible way to do this would be to hide the slider offscreen using absolute positioning and bring it back into view on request but in the interests of keeping things simple I’ll just stick to show/hide)

    Next set up your call to the flexslider plugin:

    <script type="text/javascript" charset="utf-8">
    jQuery(document).ready(function($) {
    
        $('.flexslider').flexslider({
            animation: "slide",
            slideshow: false,
            animationLoop: false,
            directionNav: true,
            slideToStart: 0,
            start: function(slider) {
                $('a.slide_thumb').click(function() {
                    $('.flexslider').show();
                    var slideTo = $(this).attr("rel")//Grab rel value from link;
                    var slideToInt = parseInt(slideTo)//Make sure that this value is an integer;
                    if (slider.currentSlide != slideToInt) {
                        slider.flexAnimate(slideToInt)//move the slider to the correct slide (Unless the slider is also already showing the slide we want);
                    }
                });
            }
    
        });
    
    });
    </script>
    

    This should show your slide when the user clicks on one of your links and also move the slider to the right position. This is just a starting point and I should point out this this is a very stripped down version of the code I’m using so this is basically untested as is. Should give you a decent platform to work from though. Shout if you run into problems

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am trying to loop through a bunch of documents I have to put
I have some data like this: 1 2 3 4 5 9 2 6
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to understand how to use SyndicationItem to display feed which is
I have a jquery bug and I've been looking for hours now, I can't
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.