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 8875357
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:57:26+00:00 2026-06-14T18:57:26+00:00

i have a problem with select client area slides please review below link Demo

  • 0

i have a problem with select client area slides please review below link

Demo

right now here is 10 imgs but it just slide and show 6 images,

i want thumbnailscroller width to scroll untill images finished.

<div class="inner_right_main_tow thumbnailscroller">Content here</div>

and here is jquery code,

$(".carousel-next").click(function(){
     $(this).parents(".thumbnailscroller").find("ul").animate({left: '-710px'});
});

$(".carousel-previous").click(function(){
     $(this).parents(".thumbnailscroller").find("ul").animate({left: '0'});
});
  • 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-06-14T18:57:27+00:00Added an answer on June 14, 2026 at 6:57 pm

    This happens because you give it a fixed location to scroll to -710px

    You need to make this dynamic with -=710px. This means that each time you click it will move 710 pixels to the left.

    $(".carousel-next").click(function(){
         $(this).parents(".thumbnailscroller").find("ul").animate({left: '-=710px'});
    });
    

    But now you need to handle the when to stop..


    Update to handle stopping (gets more complicated)

    I would change the CSS to make it easier..

    CSS fixes

    • Remove the 9999px from the .carousel rule.
    • For the .thumbnailscroller .carousel ul add

      white-space:nowrap;
      display:inline-block;
      
    • and for the .inner_right_main_tow li remove the float:left and add

      display:inline-block;
      

    jQuery

    $(window).load(function(){
        var ul = $('.thumbnailscroller').find('ul'),
            step = ul.closest('.thumbnailscroller').width(),
            maxLoc = step - ul.width();
    
        $(".carousel-next").click(function(){
            var animated = ul.is(':animated'),
                currentLoc = parseInt(ul.css('left'),10),
                nextPos = Math.max(maxLoc, currentLoc -step); 
    
            if (!animated){
                ul.animate({left: nextPos});
            }
        });
        $(".carousel-previous").click(function(){
            var animated = ul.is(':animated'),
                currentLoc = parseInt(ul.css('left'),10),
                nextPos = Math.min(0, currentLoc +step); 
    
            if (!animated){
                ul.animate({left: nextPos});
            }
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem with adding OPTIONS to SELECT tag dynamically. Here is my
I have a problem with the query below in postgres SELECT u.username,l.description,l.ip,SUBSTRING(l.createdate,0,11) as createdate,l.action
I have this problem with a SQL query (SQL Server 2008) SELECT id, client,
I have problem while loading data into html select when users press or click
i have a problem concerning a select query in MYSQL i have two different
i have problem using LIKE structure in DB2 : for example: select * from
I have a problem with building multi level select box. I have category table
I have a problem with an SQL query. SELECT SUM(table_colum) AS value, SUM(value *
I have the problem, that MSSQL Server 2000 should select some distinct values from
I have next problem, when I'm trying to retrieve value from xforms:select elements I

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.