1- Open includes/functions.php
Find;
PHP
if ($cur==1){
$html= "
<div id='img'><a href='$url'><img border='0' src='$img_src' alt='$alt' width='$newWidth' height='$newHeight'></a></div>
";
}
and replace;
PHP
if ($cur==1){
$html= "
<table>
<tr>
<td id='img'><a href='$url'><img border='0' src='$img_src' alt='$alt' width='$newWidth' height='$newHeight'></a></td>
</tr>
</table>
";
}
Find:
PHP
if ($cur==5){
$html= "
<div class='gallery_img' style='width:$newWidth px;height:$newHeight px'> ".$url." <img border='0' src='$img_src' alt='$alt' width='$newWidth' height='$newHeight' style='vertical-align:middle'></a></div>
";
}
and replace;
PHP
if ($cur==5){
$html= "
<table>
<tr>
<td class='gallery_img' style='width:$newWidth px;height:$newHeight px'> ".$url." <img border='0' src='$img_src' alt='$alt' width='$newWidth' height='$newHeight' style='vertical-align:middle'></a></td>
</tr>
</table>
";
}
2- Open templates/se_aqua/style.css
Find;
CODE
div.gallery_img {padding:3px;width:1px; background:#ffffff;}
and replace;
CODE
td.gallery_img {padding:3px;width:1px; background:#ffffff;}