Page 1 of 1

Set background to transparent

Posted: Tue Sep 08, 2009 6:18 pm
by pixelhaus
I want to set the image background to transparent on the larger image. How can I do this ? My images are 24bit pngs.

Re: Set background to transparent

Posted: Tue Sep 08, 2009 9:34 pm
by norman
I think you're using the Lightbox-Slimbox version. If so, edit slimbox.css.

Replace:

Code: Select all

#lbCenter, #lbBottomContainer {
	position: absolute;
	z-index: 9999;
	left: 50%;
	overflow: hidden;
	background-color: #fff;
}
With:

Code: Select all

#lbCenter, #lbBottomContainer {
	position: absolute;
	z-index: 9999;
	left: 50%;
	overflow: hidden;
}

#lbBottomContainer {
	background-color: #fff;
}