Tenho um problema no qual estou quebrando a cabeça a algum tempo...
Estou desenvolvendo uma aplicação com o zf e meu css não está funcionando na minha página...
cheguei a pensar que fosse algum problema de configuração do apache, mas não tenho certeza.
segue abaixo o arquivo css e o arquivo default.phtml:
default.phtml
- Código: Selecionar tudo
<!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>
<title>Lojas Booba(tm)</title>
<link rel="stylesheet" type="text/css" href="/ZF/booba/public/styles/zend.generic.css" />
</head>
<body>
<?php echo $this->render($this->header)?>
<div id="container">
<!-- Conteudo da página -->
<?php echo $this->render($this->body)?>
</div>
<?php echo $this->render($this->footer)?>
</body>
</html>
zend.generic.css
- Código: Selecionar tudo
@CHARSET "ISO-8859-1";
*{
margin: 0;
padding: 0;
}
body{
font-family: verdana, "frutiger linotype", "lucida grande", helvetica, arial, sans_serif;
text-align: center;
color: #333;
font-size: 76%;
}
h1{
color: #003d4c;
margin: 0.3em 0;
font-size: 180%;
}
#logomarca_customer{
background-color: green;
color: white;
font-family: Verdana;
font-size: xx-large;
font-weight: bold;
text-align: center;
}
Estou com um pouco de pressa pra terminar meu aplicativo... desde já agradeço a oportunidade de postar minha dúvida.



