Full Version: FireFox Template Problem
BrEaKeRuL
When i use firefox ( last version ) i get this kind of thing: SEE Attachment.
In internet explorer is ok .
Some help ?
zebaniz
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;}
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.