It's hard for me to visualize exactly what you want to do. And I'm not sure what level of expertise and creativity you have as regards css. But perhaps just using the update for this script available here:
http://www.dynamicdrive.com/forums/e...-Swiss-Army-II
will be all the help you need. Read through the description to get an idea of how to use it.
I believe the key will not be so much in styling the table, as in moving the next/prev buttons. Like:
Code:
#prev0{
position: absolute;
top: 100px;
left: 0;
}
If you put a relatively positioned element around the slideshow, the absolute values will be in relation to it.
If you're having trouble overriding any of the scripted styles for the table though, and you have the right selector, you may use the !important keyword. For example:
Code:
#controls0 {
border-width: 0 !important;
}
#controls0 td {
border-width: 0 !important;
}
If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks