Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/10/2009, 15:07
vili86
 
Fecha de Ingreso: septiembre-2009
Mensajes: 281
Antigüedad: 14 años, 7 meses
Puntos: 0
Exclamación Problema con mi index principal

Hola amigos tengo este estilo para todas mis tablas de mi sistema
Código css:
Ver original
  1. /* CSS Document */
  2.         td {
  3.             font-family:verdana,arial;
  4.             font-size:8pt;
  5.             border-style:solid;
  6.             border-color:666666;
  7.             border-width:1px;
  8.            
  9.            
  10.            
  11.         }
  12.         .tabla{
  13.             width:450;
  14.             height:600;
  15.             background-color:ffffff;
  16.             border-style:solid;
  17.             border-color:666666;
  18.             border-width:1px;
  19.         }
  20.         .titulo{
  21.             text-align:center;     
  22.             background-color:#990000;
  23.             color:#FFFFFF;
  24.             font-weight:bold;
  25.             font-size:10pt;
  26.        
  27.         }
  28.                
  29.         input[type=text] {
  30.             border:1px solid #CCCCCC;
  31.         }
  32.         input.btn {
  33.             padding:3px;
  34.             color:#FFFFFF;
  35.             background-color:#990000;
  36.             border:1px solid #000000;
  37.         }

Bien para no poner en cada html exporto a mi index principal asi
Código html:
Ver original
  1. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  2. <meta name="description" content="ACHF" />
  3. <meta name="keywords" content="your,keywords,goes,here"/>
  4.  
  5. <link rel="stylesheet" type="text/css" href="css/1024px.css" title="1024px style" media="screen,projection"/>
  6. <link rel="stylesheet" type="text/css" href="css/miestilo.css"/>

El problema que tengo es que en mi index principal tengo este codigo
Código html:
Ver original
  1. <?php include('cabecera.php');?>
  2. <?php
  3.             $modulo = $_GET['mod'];
  4.             if (!empty($modulo)) {
  5.                 $ruta = 'modulos/' . $modulo . '/'.$modulo.'.ctrl.php';
  6.                 if (file_exists($ruta)) {
  7.                     include($ruta);
  8.                 } else {
  9.                     echo "ERROR 404: No existe el archivo";
  10.                 }
  11.             } else {
  12.               ?>
  13.                 <table align="center" width="850" height="400" border="0">
  14.                 <tr>
  15.                 <td>
  16.                 <table>
  17.                 <tr>
  18.                      <td width="123">
  19.                        <h3 align="center" class="Estilo2">Noticias Breves</h3>
  20.                         <div align="center">
  21.                           <?php  include('modulos/noticias/vistas/scroll.html.php');?> 
  22.                        </div></td>
  23.                      <td width="711">
  24.                         <div align="center">
  25.                         <?php include('cuerpo.php'); ?>
  26.                         </div>
  27.                     </td>
  28.                 </tr>
  29.              </table>
  30.              </tr>
  31.             </table>
  32.            <?php
  33.            
  34.                
  35.             }
  36. ?>
  37. <?php include('pie.php');?>
  38. </body>
  39. </html
Y aunque no llamo a la clase tabla para hacer mi estilo lo coloca y queda muy mal
OTRA COSA COMO PUEDO METER UNA IMAGEN AQUI PARA MOSTRARLES COMO QUEDA