I found the solution on another topic in this forum::D
———————————————————————–
I have looked through ja_templateTools_15.php and found the problem – a previous post on this issue suggested changing $crop=1 to $crop = 0 – I thought I had made that change but after rechecking I had not.
starting @ line # 448 make the change to “$crop = 0”
function processImage ( &$img, $width, $height, $crop=0) {
if(!$img) return;
$img = str_replace(JURI::base(),”,$img);
$img = str_replace(“‘”,”,$img);
$img = rawurldecode($img);
$imagesurl = (file_exists(JPATH_SITE .’/’.$img)) ? JA_Tools::jaResize($img,$width,$height, $crop) : ” ;
return $imagesurl;
}
function jaResize($image,$max_width,$max_height, $crop=0){
$path =JPATH_SITE;
$imgInfo = getimagesize($path.’/’.$image);
$width = $imgInfo[0];
$height = $imgInfo[1];
if(!$max_width && !$max_height) {
$max_width = $width;
$max_height = $height;
}else{
—————————————————
Thanks anyway!:)