What do you do if you want to add an actual background image behind the images displayed in the slideshow?
In my case I've created a graphic in Photoshop that I want the images to lay on top of. How do I get the background graphic to stay visible? Right now when I go to the homepage I see the background graphic, but as soon as the first slideshow image loads the background graphic goes away.
Here's the code I have for the background of the slideshow.
Code: |
.nivoSlider {
position:relative;
margin-top: 10px;
margin-bottom: 10px;
background:transparent url(images/loading.gif) no-repeat 50% 50%;
background:transparent url(images/slidebg.png) no-repeat 100% 100%;
/*-moz-box-shadow:0px 0px 0px #333;*/
/*-webkit-box-shadow:0px 0px 0px #333;*/
/*box-shadow:0px 0px 0px #333;*/
}
|