X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/22697d7dcb9c700a75c795c618d8a2fe3e51a9bd..0ab95802d2de706436ca18dc702c70da9443ec1c:/sistema/local_lib/HTML_Institucional.php?ds=inline diff --git a/sistema/local_lib/HTML_Institucional.php b/sistema/local_lib/HTML_Institucional.php index 47f7f99..6f6ff53 100644 --- a/sistema/local_lib/HTML_Institucional.php +++ b/sistema/local_lib/HTML_Institucional.php @@ -102,15 +102,11 @@ class HTML_Institucional extends HTML_Table { function toHtml() { //Ajusto el ancho del mensaje - $ancho_msg = $this->_ancho - 48 - 48; + $ancho_msg = $this->_ancho - 30; //Imagenes $IMG_Izquierda =& new MECON_HTML_Image( - '/sistemas/intranet/images/institucional_izquierda.gif'); - $IMG_Texto =& new MECON_HTML_Image( - '/sistemas/intranet/images/institucional_fondo.gif'); - $IMG_Derecha =& new MECON_HTML_Image( - '/sistemas/intranet/images/institucional_derecha.gif'); + '/sistemas/intranet/images/institucional_icono.gif'); //Armo el link $attrs = 'width='. $this->_ancho_js .',height='. $this->_alto_js @@ -133,22 +129,19 @@ class HTML_Institucional extends HTML_Table { $tabla->addrow( array( $IMG_Izquierda, - $link, - $IMG_Derecha), + $link), array ('valign'=>'top') ); - $tabla->updateColAttributes(0, array('width'=>'48')); + $tabla->updateColAttributes(0, array('width'=>'30')); $tabla->updateColAttributes(1, array( 'width' => $ancho_msg, - 'align' => 'center', + 'align' => 'left', 'valign' => 'middle' ) ); - $tabla->updateColAttributes(2, array('width'=>'48')); $tabla->updateCellAttributes(0, 1, array( - 'background'=>'/sistemas/intranet/images/institucional_fondo.gif', 'class'=>'institucional' ) );