Ver Mensaje Individual
  #5 (permalink)  
Antiguo 28/10/2010, 10:01
Avatar de shadowwolfone
shadowwolfone
 
Fecha de Ingreso: abril-2009
Ubicación: Amaguaña
Mensajes: 40
Antigüedad: 15 años, 11 meses
Puntos: 1
Respuesta: divs se mueven dreamweaver

Hola.

Todos esos son tus diva todos ponlos dentro de un contenedor de las medida que necesites, y cada div dentro del contenedor colocalo donde desees, por ejemplo:

Código HTML:
#contenedor{

  width:610px;
  top:0;
  margin:0 auto;

  height:397px;

}
#MENU{
	position:absolute;
	width:121px;
	top:112px;
	margin:0 auto;
	height:247px;
	left: 276px;
}
#BIO{
	position:absolute;
	width:121px;
	top:63px;
	margin:0 auto;
	height:247px;
	left: 727px;
}
#MENU2{
	position:absolute;
	width:121px;
	top:107px;
	margin:0 auto;
	height:247px;
	left: 440px;
}
#INFO{
	position:absolute;
	width:121px;
	top:86px;
	margin:0 auto;
	height:247px;
	left: 566px;
}
</style>
</head>


<body>
<div id="contenedor">
<div id="SHADOW"></div>
<div id="CONTAINER"></div>
<div id="BANNER"></div>
<div id="MENU">menu</div>

<div id="CONTENT"></div>
<div id="BIO">bio</div>
<div id="SLIDESHOW"></div>
<div id="FOOTER"></div>
<div id="MENU2">menu2</div>
<div id="INFO">info</div>
</div>
</body>
</html> 
quedaria asi



Simplemente mueves los divs a donde quieras que vayan.

Suerte!!!