Ciao,
inserisci una riga in questo file:
WWW.TUOSITO.XXX/components/com_wrapper/views/wrapper/tmpl/default.php
Alla riga 35 trovi:
<iframe <?php echo $this->wrapper->load; ?>
id="blockrandom"
name="iframe"
...eccetera eccetera...Subito dopo inserisci (o cmq dove preferisci all'interno di questo comando):
frameborder="0"Quindi sarà:
<iframe <?php echo $this->wrapper->load; ?>
id="blockrandom"
name="iframe"
frameborder="0" src="<?php echo $this->escape($this->wrapper->url); ?>"
width="<?php echo $this->escape($this->params->get('width')); ?>"
height="<?php echo $this->escape($this->params->get('height')); ?>"
scrolling="<?php echo $this->escape($this->params->get('scrolling')); ?>"
class="wrapper<?php echo $this->pageclass_sfx; ?>">
<?php echo JText::_('COM_WRAPPER_NO_IFRAMES'); ?>
</iframe>
Dovrebbe funzionare, ciao