Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/11/2007, 09:37
Eourus
 
Fecha de Ingreso: octubre-2006
Ubicación: Murcia - España
Mensajes: 336
Antigüedad: 17 años, 5 meses
Puntos: 6
Re: problemas con fonfo

¿No te sería más facil hacerlo todo en una sola página? Podrías utilizar divs con identificadores.

Código HTML:
<div id="arriba">arriba</div>
<div id="izquierda">menu</div>
<div id="centro">contenido</div>
<div class="limpia"></div> 
Y el código css:

Código:
body { background-image:url('fondo.gif'); }
#arriba { width:100%; }
#izquierda { width: 25%; float:left; }
#centro {width:70%; float:right; }
.limpia { clear:both; }