Cita:
Iniciado por pitufoweb Como tendría que verse?
Exactamente como lo que veras en el siguiente código que
no tiene info:
Código PHP:
<html>
<head><title>Plantilla 1</title><style type="text/css">
html,body{
border:0;
margin:0;
padding:0;
font-family:Arial;
font-size:9pt;
color:#000;
background:#aabbcc;
}
#cosmos{
border:0;
padding:0;
color:#000;
background:#ff952b;
height:100%;
}
#enlaces{
float:left;
}
#info{
height:100%;
background:#ffb878;
color:#000;
margin-left:12em;
}
p{
margin:0;
}
</style></head><body>
<?php
echo '<div id="cosmos">';
echo '<div id="enlaces">';for($i=0;$i<9;$i++)echo '<p>Link #'.$i.'</p>';echo '</div>';
echo '<div id="info">';for($i=0;$i<9;$i++)echo '<p>Linea de info real #'.$i.'</p>';echo '</div>';
echo '</div></body></html>';
?>
Pero mira ESA ELEMENTAL template cómo se comporta con MAS LINEAS:
Código PHP:
<html>
<head><title>Plantilla 1</title><style type="text/css">
html,body{
border:0;
margin:0;
padding:0;
font-family:Arial;
font-size:9pt;
color:#000;
background:#aabbcc;
}
#cosmos{
border:0;
padding:0;
color:#000;
background:#ff952b;
height:100%;
}
#enlaces{
float:left;
}
#info{
height:100%;
background:#ffb878;
color:#000;
margin-left:12em;
}
p{
margin:0;
}
</style></head><body>
<?php
echo '<div id="cosmos">';
echo '<div id="enlaces">';for($i=0;$i<69;$i++)echo '<p>Link #'.$i.'</p>';echo '</div>';
echo '<div id="info">';for($i=0;$i<9;$i++)echo '<p>Linea de info real #'.$i.'</p>';echo '</div>';
echo '</div></body></html>';
?>
y mira con estas otras LINEAS DE INFO:
Código PHP:
<html>
<head><title>Plantilla 1</title><style type="text/css">
html,body{
border:0;
margin:0;
padding:0;
font-family:Arial;
font-size:9pt;
color:#000;
background:#aabbcc;
}
#cosmos{
border:0;
padding:0;
color:#000;
background:#ff952b;
height:100%;
}
#enlaces{
float:left;
}
#info{
height:100%;
background:#ffb878;
color:#000;
margin-left:12em;
}
p{
margin:0;
}
</style></head><body>
<?php
echo '<div id="cosmos">';
echo '<div id="enlaces">';for($i=0;$i<9;$i++)echo '<p>Link #'.$i.'</p>';echo '</div>';
echo '<div id="info">';for($i=0;$i<69;$i++)echo '<p>Linea de info real #'.$i.'</p>';echo '</div>';
echo '</div></body></html>';
?>
NOTA: hay que mirar al FINAL DE LA PÁGINA!