PDA

View Full Version : Slideshowbackgound


Guardian27
Jan-02-2010, 02:39 PM
Hello,

I'm changing my layout and for the moment I use Carbonite.
I want to use another layout in black with a backgroundimage.
If I use my code for the slideshow that I placed in my bio...
********>
var ssConfig = {
AlbumID: '6818738',
borderThickness: '1',
borderColor: 'FEFEFE',
newWindow: 'false',
transparent: 'true',
showLogo: 'false',
clickUrl: 'http://www.naturephoto.be',
showThumbs: 'false',
showButtons: 'false',
setSpeed: 'fast',
crossFadeSpeed: '50',
};

SM.flash.insertSlideshow(600, 533, ssConfig, 'transparent');

</********

The background is still grey when I use this in my new layout (black with backgroundimage)
I want the slideshowbackground transparant but it is not working.:scratch:scratch

Guardian27
Jan-02-2010, 02:47 PM
Hello,

I'm changing my layout and for the moment I use Carbonite.
I want to use another layout in black with a backgroundimage.
If I use my code for the slideshow that I placed in my bio...
********>
var ssConfig = {
AlbumID: '6818738',
borderThickness: '1',
borderColor: 'FEFEFE',
newWindow: 'false',
transparent: 'true',
showLogo: 'false',
clickUrl: 'http://www.naturephoto.be',
showThumbs: 'false',
showButtons: 'false',
setSpeed: 'fast',
crossFadeSpeed: '50',
};

SM.flash.insertSlideshow(600, 533, ssConfig, 'transparent');

</********

The background is still grey when I use this in my new layout (black with backgroundimage)
I want the slideshowbackground transparant but it is not working.:scratch:scratch

Ok found it, #bioBox .boxBottom,
#bioBox {background: none !important;}

This thread can be removed.

jfriend
Jan-02-2010, 02:51 PM
FYI, your slideshow does not work in IE7 because you have an extra comma that should not be there. Remove the comma shown in red:

var ssConfig = {
AlbumID: '6818738',
borderThickness: '1',
borderColor: 'FEFEFE',
newWindow: 'false',
transparent: 'true',
showLogo: 'false',
clickUrl: 'http://www.naturephoto.be',
showThumbs: 'false',
showButtons: 'false',
setSpeed: 'fast',
crossFadeSpeed: '50',
};

Guardian27
Jan-02-2010, 02:59 PM
Thank you.
Do you know wich code I need for Gallery Categories, this has also a grey background that need to be transparant


FYI, your slideshow does not work in IE7 because you have an extra comma that should not be there. Remove the comma shown in red:

var ssConfig = {
AlbumID: '6818738',
borderThickness: '1',
borderColor: 'FEFEFE',
newWindow: 'false',
transparent: 'true',
showLogo: 'false',
clickUrl: 'http://www.naturephoto.be',
showThumbs: 'false',
showButtons: 'false',
setSpeed: 'fast',
crossFadeSpeed: '50',
};