Log in

View Full Version : editing border for slideshow



kdavidso
10-19-2007, 05:53 PM
1) Ultimate Fade-In Slideshow

2) http://www.tutorialized.com/view/tutorial/Ultimate-Fade-in-slide-show/11145

3) How can I edit the color and padding of the border for this slideshow?

Thanks for your help!

boogyman
10-19-2007, 05:58 PM
change


<style type="text/css">
.centerdiv{ /*IE method of centering a relative div*/
text-align: center;
}

.centerdiv>div{ /*Proper way to center a relative div*/
margin: 0 auto;
}
</style>


to


<style type="text/css">
.centerdiv{ /*IE method of centering a relative div*/
text-align: center;
padding: something;
border: something;
}

.centerdiv>div{ /*Proper way to center a relative div*/
margin: 0 auto;
padding: something;
border: something;
}
</style>