جرب هذا التعديل الذي اجريته على ملف الأخ wcc
كود PHP:
<script type="text/javascript">
<!--
$width = 500; // change it
window.onload = function(){
var wcc = document.getElementsByTagName('img');
for(i=0; i<wcc.length; i++){
var Img = new Image();
Img.src = wcc[i].src;
if(Img.width > $width ){
wcc[i].width = "200" // change it
//wcc[i].height = "200";
wcc[i].rel = "lightbox";
wcc[i].style.cursor = "pointer";
wcc[i].onclick = function(){
document.location = this.src;
}
}
}
}
//-->
</script>