Buenas, tengo un problema y es que tengo el diseño todo hecho en photoshop y pasado a CSS, ahora si, tengo un div para poner noticias y otro para poner un menú, pero el problema es que no se desplazan (alargan) según el texto que tenga :S
Acá dejo el CSS:
Código CSS:
Ver originalbody {
text-align: center;
background-color:#000000;
color: #000000;
}
#contenedor {
width: 780px;
margin: auto;
}
#header {
width: 776px;
height: 88px;
background: url('header.gif') no-repeat;
}
#barra_01 {
width: 18px;
height: 240px;
background: url('barra_02.gif') repeat-y;
float: left;
}
#contenido {
width: 546px;
background: url('contenido.gif') repeat;
float: left;
text-align: left;
vertical-align: text-top;
}
#barra_02 {
width: 25px;
height: 240px;
background: url('barra_03.gif') repeat-y;
float: left;
}
#menu {
width: 174px;
background: url('menu.gif') repeat;
float: left;
text-align: left;
vertical-align: text-top;
}
#barra_03 {
width: 13px;
height: 240px;
background: url('barra_04.gif') repeat-y;
float: left;
}
#footer {
width: 776px;
height: 48px;
background: url('footer.gif') no-repeat;
float:left;
clear: both;
text-align: left;
margin: auto;
}
index.php
Código HTML:
Ver original<link rel="stylesheet" type="text/css" href="images/style.css" /> <div id="header">RED MEGA BLOG 2.0
</div>
Acá dejo la web como está en ese código:
http://www.rocking-gamez.com.ar/prueba/
Desde ya, muchas gracias ^^
SOLUCIONADO