How can I show more 3 slides ( =6) for slide show plugin for the tabs? The default setting gives me only 3 slides, but I need 6.
My Codes is:
$(function () {
$(".slidetabs").tabs(".images > div", {
// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",
// start from the beginning after the last tab
rotate: true,
// use the slideshow plugin. It accepts its own configuration
}).slideshow({ clickable: false });
});
Thanks.
If I understand your question correctly what you want is to be able to show 6 slides instead of the 3 that the plugin shows as standard.
If thats a case its a simple HTML change.
The code is currently as follows:
You simply need to change it too the following:
You would also need to add three more a hrefs:
Hope this helps.