
Originariamente inviata da
carlomarangoni
È possibile farlo! Sapremmo aiutarti, qui ce gente che ne sa una più del diavolo! Cosa vorresti che ti facessimo il codice completo (pappa pronta)?
Volevo sapere prima di tutto se era fattibile.
Attualmente il mio css è questo:
codice:
#page{
width: 1276px;
position: absolute;
left: 50%;
margin: 0 0 0 -638px;
}
#header{
position:relative;
float:left;
margin-right:200px;
height:100px;
width:1274px;
border-bottom: solid 3px rgb(94,0,0);}
#login{
float:right;
width:260px;
height:34px;
border:0px solid rgb(94,0,0);
margin: 2px;
border-radius: 3px;
padding:4px;
margin-right:30px;}
#top{
padding-left:5px;
position:relative;
clear: both;
width:1272px;
border-top: solid 0px rgb(94,0,0);
border-bottom: solid 2px rgb(94,0,0);
height: 40px;
font-family: 'Century Gothic';}
#container{
border:0px solid rgb(3,53,5);
margin-top:5px;
width:1274px;}
#sinistra{
float:left;
top:0px;
left: 0px;
clear:both;
width: 230px;
height:100%;
font-family: 'Century Gothic';
overflow: auto;
padding-top:12px;
white-space:nowrap;}
#destra{
margin-left: 230px;
padding: 10px;
height:100%;}
#destraVuoto{
margin-left: 140px;
padding-left: 70px;
}
#footer{
position:fixed;
width:1274px;
bottom:0px;
height:35px;
text-align:center;
background-color:rgb(3,53,5);
color: white;
z-index:999999;}
Utilizzato da:
codice:
<html>
<head><?php include("pages/head.php"); ?></head>
<BODY>
<div id="page">
<div id="header"><?php include("pages/header.php"); ?></div>
<div id="top"><?php include("pages/menu_destra.php"); ?><div id="login"><?php include("pages/login.php"); ?></div></div>
<div id="container">
................
</div>
</div>
</div>
<div id="footer"><?php include("pages/footer.php"); ?></div>
</body>
</html>