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

  • SEARCH
  • Home
  • 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 8277427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:41:23+00:00 2026-06-08T08:41:23+00:00

First of all please see the jsfiddle I’ve prepared: I understand that we shouldn’t

  • 0

First of all please see the jsfiddle I’ve prepared:

I understand that we shouldn’t rely on externally hosted code so I will add it at the bottom of the question.

What I am trying to do is replicate the demo of the plugin here

The difference is I am pulling the authors of my wordpress site and this html is outputted correctly on the page but for some reason I cannot get the avatars to sit side by side the full width of my page inside the carousel.

I have tried changing the width of .jcarousel-skin-tango .jcarousel-container-horizontal and .jcarousel-skin-tango .jcarousel-clip-horizontal and this does seem to make it wider but the distance between the avatars is increased as well so they travel in from a great distance when the buttons are pressed instead of them sitting in a horizontal line with a small gap between them.

Changing the width will mess up the next and previous buttons but that can easily be fixed to match the new carousel width.

I simply have no idea why it isn’t appearing like the demo version, all I have changed is some css for the buttons.

Any help is GREATLY appreciated.

CODE

jCarousel Initialisation

jQuery(document).ready(function() {

    jQuery('#authorcarousel').jcarousel({
        scroll: 1,
        visible: 1,
        animation: 1000,
        auto: 0,
        wrap: 'circular',
        itemFallbackDimension: 75
    });
});​

HTML

<ul id="authorcarousel" class="jcarousel-skin-tango">
    <li>
        <img src="http://cdn2.iconfinder.com/data/icons/humano2/128x128/apps/comix.png" alt="" width="128" height="128" class="photo" />
    </li>
    <li>
        <img src="http://cdn5.iconfinder.com/data/icons/iconshock_guys/128/andrew.png" alt="" width="128" height="128" class="photo" />
    </li>
    <li>
        <img src="http://cdn4.iconfinder.com/data/icons/STROKE/communications/png/128/avatar.png" alt="" width="128" height="128" class="photo" /></li>
    <li>
        <img src="http://cdn2.iconfinder.com/data/icons/holloweenavatars/PNG/Frankenstein.png" alt="" width="128" height="128" class="photo" />
    </li>
    <li>
        <img src="http://cdn5.iconfinder.com/data/icons/iconshock_guys/128/matthew.png" alt="" width="128" height="128" class="photo" />
    </li>
</ul>

CSS

ul#authorcarousel  {
    list-style: none;
    width: 800px;
    margin: 20px auto 50px auto;
    padding: 0;
}

#authorcarousel li {
    margin: 0 0 5px 0;
    list-style: none;
    height: 90px;
    padding: 15px 0 15px 0;
    float: left;
    width: 90px;
}

#authorcarousel img {
    width: 75px;
    height: 75px;
    float: left;
    margin: 0 10px 0 0;
    padding: 3px;
}

#authorcarousel img:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* = jCarousel
----------------------------------------------- */ 
.jcarousel-skin-tango .jcarousel-container {
    background: #FFFFFF;
    border: none;
}

.jcarousel-skin-tango .jcarousel-direction-rtl {
    direction: rtl;
}

.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 100px;
    padding: 5px 20px;
} 


.jcarousel-skin-tango .jcarousel-clip {
    overflow: hidden;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width:  100px;
    height: 110px;
}


.jcarousel-skin-tango .jcarousel-item {
    width: 75px;
    height: 75px;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
    margin-left: 0;
    margin-right: 10px;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
    margin-left: 10px;
    margin-right: 0;
}


.jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
 }

 /**
 *  Horizontal Buttons
 */
 .jcarousel-skin-tango .jcarousel-next-horizontal {
     background: #F15A23 url(http://demo.samuli.me/smartstart/img/slider-arrows-medium.png) no-repeat -5px 37px;
    filter: alpha(opacity=60);
    background: rgba(241, 90, 35, 0.6) url(http://demo.samuli.me/smartstart/img/slider-arrows-medium.png) no-repeat -5px 37px;
    color: transparent;
    cursor: pointer;
    display: block;
    font: 0/0 a;
    height: 88px;
    margin: -26.5px 0 0;
    position: absolute;
    text-shadow: none;
    top: 42%;
    left: 90%;
    width: 30px;
    z-index: 90;
    background-position: -42px 36px;    
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal {
    left: 5px;
    right: auto;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-horizontal:focus {
   filter: alpha(opacity=100);
   opacity: 1;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:active {
    filter: alpha(opacity=100);
    opacity: 1;
}

.jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:focus,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    filter: alpha(opacity=100);
    opacity: 1;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal {
    background: #F15A23 url(http://demo.samuli.me/smartstart/img/slider-arrows-medium.png) no-repeat -5px 37px;
    filter: alpha(opacity=60);
    background: rgba(241, 90, 35, 0.6) url(http://demo.samuli.me/smartstart/img/slider-arrows-medium.png) no-repeat -5px 37px;
    color: transparent;
    cursor: pointer;
    display: block;
    font: 0/0 a;
    height: 88px;
    margin: -26.5px 0 0;
    position: absolute;
    text-shadow: none;
    top: 42%;
    left: 17%;
    width: 30px;
    z-index: 90;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal {
    left: auto;
    right: 5px;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:hover, 
.jcarousel-skin-tango .jcarousel-prev-horizontal:focus {
    filter: alpha(opacity=100);
    opacity: 1;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
    filter: alpha(opacity=100);
    opacity: 1;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:focus,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

​

​

  • 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-08T08:41:24+00:00Added an answer on June 8, 2026 at 8:41 am

    Playing around a bit with the fiddle ended me with this: http://jsfiddle.net/PWdWR/

    I’d say the key to resolving your issue is partially in the javascript: visible: 6 option of jcarousel

    And on the other side there’s alot of the CSS that changes nothing that can be removed and the following class will adapt what you’re seeing: .jcarousel-skin-tango .jcarousel-clip-horizontal

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

Sidebar

Related Questions

Please take a look at this fiddle jsfiddle.net/Qstuw/2/ As you see from picture first
First of all i don't know whether the title is relevant or not (please
First of all, if the title of my question is not clear, please go
First of all I want to mention two things, One: My code isn't perfect
Updated: please see this other thread instead, all this COM stuff is not part
I am building a website that runs all of the code trough index.php. For
Please see my jsfiddle i've created to replicate my problem. http://jsfiddle.net/motocomdigital/22KFS/3/ In my project,
I have a code that I tried to display inline all the contents in
Update Added jsfiddle - see bottom of post I currently have a function that
first of all: please excuse my english. It's not my natural tongue. I have

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.