X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/0505d35b40c4819ffb0a94b557ef7c614c3545a5..20d4a7ba7b9c030db66d4f655caa4cc481a509ae:/sistema/www/sistemas.php diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index d4d61e2..d3edfbc 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -15,16 +15,14 @@ require_once 'MECON/HTML/Image.php'; require_once 'DB.php'; require_once 'AI/Sistema.php'; -define('COLUMNAS', 3); +define('COLUMNAS', 2); $t = new HTML_Table( array( - 'width' => '100%', - 'cellspacing' => '0', + 'width' => '760', + 'cellspacing' => '10', 'cellpadding' => '0', 'border' => '0', - 'align' => 'left', - 'valign' => 'middle', ) ); @@ -43,7 +41,7 @@ while ($sistema) { array( 'title' => $sistema->descripcion, 'border' => 0, - 'align' => 'absmiddle', + 'align' => 'middle', ) ); $link = new MECON_HTML_Link( @@ -72,7 +70,7 @@ while ($sistema) { $row[] = ' '; } } - $t->addRow($row, array('width' => $pct)); + $t->addRow($row, array('width' => $pct, 'valign' => 'top')); } $m = new HTML_DietMarco('sistemas');