Olá pessoal...
Estou com um problema aqui ,
Seguinte
Quero fazer um blog dinâmico usando o php , fiz em arquivos separados...
o problema é que uma das div(Tudo) não está estilizando, ou seja o css não esta sendo aplicado... e o fechamento dela[i] (
o
o engraçado é que as outras funcionam normal...
<style type="text/css">
#tudo{
position:absolute;
top:0;
background-color:white;
width:98.6%;
margin-top:0;
margin-bottom:0;
min-height: 100%;
margin-left:0%;
}
body{
//background: url("img/left.gif") repeat;
background-color:silver;
}
#topo{
width:100%;
height:100px;
background-color:;
margin:0;
}
#imglinha{
background: url("img/linha.gif") repeat-x;
width:100%;
height:10px;
position:relative;
top:30;
left:0;
}
#logo{
background: url("img/cjunior.png") no-repeat;
position:relative;
left:10px;
top:0px;
width:200;
height:50px;
}
#profissao{
font-family: Verdana, "Times New Roman", Candara;
position:relative;
top:45;
left:80;
color:black;
}
</style>
<html>
<head>
<title>C. Junior</title>
<link rel="stylesheet" type="text/css" href="estilo.css" />
</head>
<body>
<div id="tudo">
<div id="topo">
<div id="logo" ><h6 id="profissao">Programador Web</h6></div>
<div id="imglinha"></div>
</div>
<?php
include("topo.php");
?>
<div id="menu"></div>
<div id="corpo"></div>
<div id="rodape"></div>
</div>
</body>
</html>
Agradeço desde já!
Aprendiz C. Junior