Colega he intentado pero nada...
el modulo es Simple Image Holder Module.
tiene el archivo mod_sih.php
que trae esto...
<?php
/**
* Author: Omar Mohammed
* Email: Knightofbaghdad@yahoo.com
* Module: Simple Image Holder
* Version: 1.5.5
**/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
$width = $params->get('width',"");
$height = $params->get('height',"");
$image = $params->get('image',"");
$opacity= $params->get('opacity',"100");
$alt = $params->get('alt',"");
$link = $params->get('link',"");
$page = $params->get('page',"");
$align = $params->get('align',"");
$new_w = ($width == null) ? "" : " width=\"".$width. "\"" ;
$new_h = ($height == null) ? "" : " height=\"".$height. "\"" ;
$page2 = ($page == "same_page") ? "" : (($page == "new_page") ? "target=\"_blank\" " : "") ;
$image2 = ($image == null) ? "No image Selected" : "<img src=\"".$image."\" border=\"0\""." alt=\"".$alt."\"".$new_w.$new_h."></img>" ;
$image3 = ($link == null) ? $image2 : "<a ".$page2."href=\"".$link."\">".$image2."</a>" ;
$opa = $opacity/100;
?>
<!-- Simple Image Holder starts here -->
<div style="text-align: <?php echo $align; ?>; opacity: <?php echo $opa; ?>; filter:alpha(opacity=<?php echo $opacity; ?>);"><?php echo $image3; ?></div>
<!-- Simple Image Holder ends here -->
le intente cambiar lo que esta entre <!-- Simple Image Holder starts here --> por el code que me dices pero nada...
Será mejor hacerlo con otro modulo?
tu que me recomiendas colega...
Gracias de antemano hermano...