Log in

View Full Version : Ultimate Fade-in slideshow (v2.4) Question



JTiStudio
09-08-2010, 03:17 AM
Hello,

I have implemented the Ultimate Fade-in slideshow (v2.4) Script into my development site, but don't know anything about editing the script itself (only HTML and CSS). I am using different sized images, and have set the slideshow div to be big enough for all, but the images are all centered in the div. I would like all images to be aligned to the left side of the div instead. If anyone could help I would appreciate it.

Thanks,

Justin

jscheuer1
09-08-2010, 04:01 AM
Add this to your stylesheet:


.gallerylayer img {
margin-left: 0!important;
}

If you also want them aligned to the top, use:


.gallerylayer img {
margin: 0!important;
}

JTiStudio
09-08-2010, 12:04 PM
Thanks John, that worked perfectly.

Justin