I really like the Business theme and have built my website with it. My only problems are with the slideshow. I do not want the title overlay on the slides (or slide title bar or whatever it is called). I removed the description, but I still have a gray stripe that shows up at the bottom of each slide. How can I eliminate that? Also, I need to adjust the speed of the slideshow. It is currently too slow at 10 seconds per slide. I haven't done much with ftp or CSS, so perhaps that is my problem. I have FileZilla and have managed to upload new photos to the slideshow, but it would be really nice to be able to have more control over the slideshow without having to alter code. Can someone help me? I am willing to create a new slideshow with the Views Slideshow module if necessary, but I don't know how to overwrite the one that is already there if I do that. Really, if I could just remove the overlay and speed up the current slideshow, I would be okay with the current setup.

Comments

PagalGuy’s picture

Simple.....
Goto business\js\sliding_effect.js
in that file find this line
//Rotation + Timing Event
rotateSwitch = function(){
$(".desc").eq( $('.paging a.active').attr("rel") - 1 ).slideDown("slow");
play = setInterval(function(){ //Set timer - this will repeat itself every 3 seconds
$active = $('.paging a.active').next();
if ( $active.length === 0) { //If paging reaches the end...
$active = $('.paging a:first'); //go back to first
}
rotate(); //Trigger the paging and slider function
}, 4000); //Timer speed in milliseconds (4 seconds)

};
the darken 4000 states rotation in every 4 seconds. Change it to anything you want.
Enjoy :)

devsaran’s picture

Status: Active » Closed (duplicate)

Thanks PagalGuy.