Try with this:
Find this code on your news_portal.html.php (line 1050 - 1089 aprox)
//create html table for layout
$image = '<table cellspacing="0" cellpadding="0" border="0" width="100%" style="vertical-align:top;">';
if ($img_url!='') {
if("" == $zone_settings['use_class_image']){
//show image with admin settings
$image.='
<tr>
<td style="vertical-align:top;" width="100%">
<div align="'.$image_alignment.'"><a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'><img src="'.$img_url.'" alt="'.$content['title'].'" class="top_image" align="'.$image_alignment.'" '.$width_th.' '.$height_th.'/></a></div>
</td>
</tr>';
}else{
//show image with css settings
$image.='
<tr>
<td style="vertical-align:top;" class="'.$zone_settings['use_class_image'].'">
<div><a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'><img src="'.$img_url.'"></a></div>
</td>
</tr>';
}
}
if ($title != '') {
if("" == $zone_settings['use_class_title']){
//show title with admin settings
$image.='
<tr>
<td style="vertical-align:top;" width="100%" id="top_title">
<div>'.$bullets_start.'<a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'>'.$title.'</a>'.$bullets_end.'</div>
</td>
</tr>';
}else{
//show title with class settings
$image.='
<tr>
<td style="vertical-align:top;" class="'.$zone_settings['use_class_title'].'">
<div><a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'>'.$title.'</a></div>
</td>
</tr>';
}
}
Replace for this:
//create html table for layout
$image = '<table cellspacing="0" cellpadding="0" border="0" width="100%" style="vertical-align:top;">';
if ($title != '') {
if("" == $zone_settings['use_class_title']){
//show title with admin settings
$image.='
<tr>
<td style="vertical-align:top;" width="100%" id="top_title">
<div>'.$bullets_start.'<a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'>'.$title.'</a>'.$bullets_end.'</div>
</td>
</tr>';
}else{
//show title with class settings
$image.='
<tr>
<td style="vertical-align:top;" class="'.$zone_settings['use_class_title'].'">
<div><a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'>'.$title.'</a></div>
</td>
</tr>';
}
}
if ($img_url!='') {
if("" == $zone_settings['use_class_image']){
//show image with admin settings
$image.='
<tr>
<td style="vertical-align:top;" width="100%">
<div align="'.$image_alignment.'"><a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'><img src="'.$img_url.'" alt="'.$content['title'].'" class="top_image" align="'.$image_alignment.'" '.$width_th.' '.$height_th.'/></a></div>
</td>
</tr>';
}else{
//show image with css settings
$image.='
<tr>
<td style="vertical-align:top;" class="'.$zone_settings['use_class_image'].'">
<div><a href="'.HTML_ijoomla_news::sef_url($read_link,$content['link_url']).'" '.$target_link.'><img src="'.$img_url.'"></a></div>
</td>
</tr>';
}
}
Save the changes and let me know how works.
Best regards,