Hi,
I have a website that i need to place the footer after the global div ... under this one.
this is a small schema of the page:
my footer div css is this:
This way the footer never appears in the end of the site.
Anikin
Hugo Alexandre Dias
Web-Programmer
I have a website that i need to place the footer after the global div ... under this one.
this is a small schema of the page:
Code:
<body>
<div id="global">
<div id="header">{include file="header.tpl"}</div>
<div id="left">{include file="leftcol.tpl"}</div>
<div id="center">{include file="centro.tpl"}</div>
<div id="right">{include file="rightcol.tpl"}</div>
</div>
<div id="footer">{include file="footer.tpl"}</div>
</body>
my footer div css is this:
Code:
#footer{
position:absolute;
left: 50%;
width: 900px;
margin-left: -450px; /* half of the width */
margin-top: 10px;
margin-bottom: 10px;
color: #828685;
float:left;
bottom:0;
}
This way the footer never appears in the end of the site.
Anikin
Hugo Alexandre Dias
Web-Programmer