Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/08/2013, 12:48
manelmanel8
 
Fecha de Ingreso: marzo-2012
Mensajes: 180
Antigüedad: 12 años, 1 mes
Puntos: 2
Respuesta: No muestra el footer

Pero no muestra ningun fallo, lo que me estraña es que si pongo el footer fuera del container si que funciona...

Código PHP:
body {
    
height:100%;
    
background:url(../img/background.jpg);
    
font-family:HelveticaArialsans-serif;
    
font-size:0.8em;
    
font-weight:normal;
    
color:red;
    
text-align:left;
}

#wrapper {
    
width:100%;
    
height:100%;
    
position:absolute;
    
overflow:auto;
    
margin:0;
}

#container {
    
position:relative;
    
width:955px;
    
overflow:auto;
    
margin:0 auto;
    
margin-top:20px;
}

#header {
    
width:955px;
    
height:152px;
    
padding:0;
}

#menu {
    
width:955px;
    
height:100%;
    
background:url(../img/menu.pngrepeat-x;
    
text-transformuppercase
    
font-weight:bold;
}

#menu ul {
    
list-style:none
    
margin:0
    
padding0 0 0 230px;
    
height:20px;
}
    
#menu li {
    
float:left
    
padding:65px 20px 65px 20px;   
    
color:#d4d5d9;
    
line-height20px;
}

#menu li:hover{
    
color#ffad00;    
    
display:block;    
    
text-decoration:underline;
    
font-weight:bold;
}

.
separation    {backgroundurl(../img/separation.pngno-repeatbackground-positionright;}

#bigpicture {
    
width955px;
    
float:left;
    
margin-top:20px;
}

#boxes {
    
width:955px;
    
height:332px;
    
float:left;
    
margin-top:20px;
}

#box {
    
float:left;
    
width:304px;
    
height:332px;
}

.
box1 {background:url(../img/home/blue.pngno-repeat;}
.
box2 {margin-left:20pxbackground:url(../img/home/red.pngno-repeat;}
.
box3 {margin-left:20pxbackground:url(../img/home/green.pngno-repeat;}

.
box1 a #picture, .box2 a #picture, .box3 a #picture {width: 304px; height: 332px;}

#footer {  min-height:70px;  margin-top:20px;  background-color:#000000;} 
Código PHP:
<!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>wens film</title>
    <link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
    <div id="wrapper">
        <div id="container">
            <?php include("header.php")?>
            <div id="bigpicture">
                <img src="img/home/foto_gran.jpg" width="955" height="333" />
            </div>
            <div id="boxes">
                <div id="box" class="box1"><a href="index.php"><div id="picture"></div></a></div>
                <div id="box" class="box2"><a href="index.php"><div id="picture"></div></a></div>
                <div id="box" class="box3"><a href="index.php"><div id="picture"></div></a></div>
            </div>
            <?php include("footer.php")?>  
        </div> <!--container-->                   
    </div> <!--wrapper-->
</body>
</html>