Hola, gracias por la respuesta.
Evidentemente me di cuenta de unos detalles del CSS.
Antes estaba asi:
Código :
#formulario {background: url(img/form.jpg); width:410;height:513}#Tabla_01 tr td #formulario .form table tr td {
font-family: Helvetica;
color: #FFF;
font-weight: bold;
}
#formulario2 {background: url(img/cl.jpg); width:400;height:177}
Lo arregle asi:
Código :
#formulario {background: url(img/form.jpg); width:410;height:513}#Tabla_01 tr td #formulario .form table tr td {
font-family: Helvetica;
color: #FFF;
font-weight: bold;
}
#formulario2 {background: url(img/cl.jpg); width:400;height:177}
#formulario2 {
width:400px;
height:177px;
}
tambien me di cuenat que estaba mal mi html al principio:
Anterior:
Código :
<link href="estilos.css" rel="stylesheet" type="text/css" />
<HTML>
<style type="text/css">
body {
background-color: #000;
}
</style>
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Liberar BlackBerry</title>
El Correco
Código :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Liberar BlackBerry</title>
<link href="estilos.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body {
background-color: #000;
}
</style>
</head>
Con estos detalles se visualiza bien al web.
Tu no recomiendas usar PSD para ahcer web? es la primera ves que lo hago con photoshop, tenia uan idea y me resulto muy rapido, en 30 minutos tenia la web hecha.
Gracias.