Ver Mensaje Individual
  #19 (permalink)  
Antiguo 12/01/2008, 10:46
Avatar de Cristiaen
Cristiaen
 
Fecha de Ingreso: enero-2008
Mensajes: 29
Antigüedad: 16 años, 4 meses
Puntos: 0
Re: Problema con CSS y modulos

Cita:
Iniciado por ezequiel_pethead Ver Mensaje
Si, aca te dejo todo el codigo, esto seria /artistas/index.php y tiene 3 includes que estan en la raiz. Lo que no me cargan son los includes desde ARTISTAS
Código HTML:
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="style_principal.css" rel="stylesheet" type="text/css">
</head>
<body background="../tiled_background2.gif" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="720" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
  <tr> 
    <td colspan="3"><table width="720" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr> 
          <td> 
            <? include_once('header.php'); ?>
          </td>
        </tr>
      </table></td>
  </tr>
  <tr> 
    <td colspan="3" valign="top">&nbsp;</td>
  </tr>
  <tr> 
    <td width="591" valign="top" class="Line">
<table width="520" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr> 
          <td><img src="../images/bar-bienvenido.gif" width="500" height="45"></td>
        </tr>
      </table>
      <table width="490" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr> 
          <td>&nbsp;</td>
        </tr>
        <tr> 
          <td><div align="left"><img src="../sas.jpg" width="457" height="140"></div></td>
        </tr>
        <tr>
          <td>&nbsp;</td>
        </tr>
      </table>
      
    </td>
    <td width="94" valign="top"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr> 
          <td> 
            <? include_once('form-artists.php');
	   ?>
          </td>
        </tr>
      </table>
      
    </td>
    <td width="35" valign="top">&nbsp;</td>
  </tr>
  <tr>
    <td colspan="3" valign="top">&nbsp;</td>
  </tr>
  <tr> 
    <td colspan="3" valign="top"><p>&nbsp;</p>
      </td>
  </tr>
  <tr> 
    <td colspan="3"> <table width="720" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr> 
          <td> 
            <? include_once('footer.php'); ?>
          </td>
        </tr>
      </table></td>
  </tr>
</table>
</body>
</html> 
Si los includes los tienes en la raíz no te van a funcionar de esa manera, tienes que poner:

Código PHP:
<?php include_once('../footer.php'); ?>
Lo de los css no me queda claro, podrías poner las rutas que tienes y los archivos, y que quieres insertar en qué? Gracias!