El tema es que el header y el navbar todo bien...
pero.
Yo en donde va el contenido en las tablas lo tenia asi:
Código html:
ese es como lo teniaVer original
por ejemplo a los bordes de arriba del conte lo tenia asi:
elborde superior izq el del medio y el de la der
y lo quise hacer con divs pero se me ponen uno abajo del otro.
Asi lo hice con divs en html:
Código html:
y el css:Ver original
Código css:
Por ahora si ven el html solo probe con los de arribas :/ Ver original
body{ background-image:url(imgs/background.png); background-repeat:repeat-x; background-color:#403e3e; margin-top:0px; } p{ margin-bottom:0px; margin-top:0px; text-indent:5px; } #contenedor{ width:898px; padding:0; margin:0 auto; } #header{ background-image:url(imgs/header.png); background-repeat:no-repeat; background-position:center; height:150px; width:600px; padding:0; margin:0 auto; } #navbar{ background-image:url(imgs/navbar.png); height:40px; background-repeat:no-repeat; line-height:40px; text-align:center; width:898px;} a.nav:link{ color:#000000; font:Arial, Helvetica, sans-serif; font-size:15px; text-decoration:none; font-weight:bold } a.nav:hover{ color:#00FF00; font:Arial, Helvetica, sans-serif; font-size:16px; text-decoration:underline; font-weight:bold; } a.nav:visited{ color:#000000; font:Arial, Helvetica, sans-serif; font-size:15px; text-decoration:none; font-weight:bold } .contepad{ margin-top:20px; background-color:#222222 } /*Bordes Contenido*/ #upcnt{ height:29px; width:898px; } .up{ background-image:url(imgs/up.png); background-repeat:repeat-x; height:29px; } .down{ background-image:url(imgs/down.png); background-repeat:repeat-x; height:29px; } .up-l{ background-image:url(imgs/up-left.png); background-repeat:no-repeat; height:29px; width:30px; } .up-r{ background-image:url(imgs/up-right.png); background-repeat:no-repeat; height:29px; width:30px; } .left{ background-image:url(imgs/left.png); background-repeat:repeat-y; width:30px; } .right{ background-image:url(imgs/right.png); background-repeat:repeat-y; width:30px; } .down-l{ background-image:url(imgs/down-left.png); background-repeat:no-repeat; height:29px; width:30px; } .down-r{ background-image:url(imgs/down-right.png); background-repeat:no-repeat; height:29px; width:30px; }