Set background to transparent

Adds a Lightbox slideshow to your products.
Post Reply
pixelhaus
Posts: 5
Joined: Mon Dec 15, 2008 10:59 pm

Set background to transparent

Post 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.
norman
Site Admin
Posts: 1252
Joined: Sat Feb 07, 2004 9:55 pm

Re: Set background to transparent

Post 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;
}
Norman
Post Reply