|
Best would have been not using the table in this case.
A quick fix would be setting the slideshow inside a div, and set width and height style with overflow hidden.
For example:
......
<td>
<div style="width:500px;height:400px;overflow:hidden">
your slide show code here....
</div>
</td>
.........
Last edited by webcosmo; 12-11-2009 at 04:32 PM..
|