Bleh, I'm not sure why I can't seem to fix it the rest of the way. All the style elements are in place. I must be missing something small. Here are my html files:
portalezgallery_template_index:
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://malsup.github.com/jquery.cycle.all.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($)
{
$(document).ready(function(){
$('#myslides').cycle({
fx: 'fade',
speed: 1800
});
});
});
</script>
<style type="text/css">
#myslides {
margin: 0px auto;
width: 220px;
height: 220px;
text-align: center;
line-height: 220px;
}
#insidediv {
width: 220px !important;
height: 220px !important;
}
#insidediv img {
vertical-align: middle;
max-width: 200px;
max-height: 200px;
}
</style>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<br />
<tr>
<td class="thead"><strong>Gallery Slideshow</strong></td>
</tr>
<tr>
<td class="trow1">
<div id="myslides" style="position:relative;">
{$ezgallery_img}
</div>
</td>
</tr>
</table>
<br />
portalezgallery_template_portal:
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://malsup.github.com/jquery.cycle.all.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($)
{
$(document).ready(function(){
$('#myslides').cycle({
fx: 'fade',
speed: 1800
});
});
});
</script>
<style type="text/css">
#myslides {
margin: 0px auto;
width: 220px;
height: 220px;
text-align: center;
line-height: 220px;
}
#insidediv {
width: 220px; !important;
height: 220px; !important;
}
#insidediv img {
vertical-align: middle;
max-width: 200px;
max-height: 200px;
}
</style>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Gallery Slideshow</strong></td>
</tr>
<tr>
<td class="trow1">
<div id="myslides" style="position:relative;">
{$ezgallery_img}
</div>
</td>
</tr>
</table>
<br />
portalezgallery_image:
<div id="insidediv">
<a href="{$iPath}">
<img id="myslideimg" src="{$iPath}">
</a>
</div>