View Full Version : Site Footers


Super_Sonic
02-23-2005, 07:00 PM
How would I add a site footer using css??? wat i need is the code!

Merike
02-23-2005, 07:38 PM
If you mean including footer's html code then that can be done with php. If you just want to style bottom of your page then you have to secify what exactly should it look like.

Note: I believe advertising in signatures is not allowed by forum rules.

Super_Sonic
02-24-2005, 03:12 PM
If you mean including footer's html code then that can be done with php. If you just want to style bottom of your page then you have to secify what exactly should it look like.

Note: I believe advertising in signatures is not allowed by forum rules.
i just want a row along the bottom using css like <div id="footer"></div> wich would go in the html. wat i need is the code wat i would put in the stylesheet.

wergo
02-24-2005, 04:08 PM
You would put something like

.footer {color:#123456;background-color:#12345;}

or whatever you feel like changing, in there.

Super_Sonic
02-24-2005, 04:36 PM
You would put something like

.footer {color:#123456;background-color:#12345;}

or whatever you feel like changing, in there.
that wouldnt align it to the very bottom of the page!

Super_Sonic
02-25-2005, 03:24 PM
that wouldnt align it to the very bottom of the page!
i need info on how to make the ccs layout column to align to the very bottom of the page!

Dutch.American
02-25-2005, 04:36 PM
<html>
<head>
<title>Your Title Here</title>
<style type="text/css">

body
{ margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}

#footer {
top: 0;
margin-left: 230px;
margin-right: 230px;
}

</style>
</head>
<body>

<--EVERYTHING ON YOUR SITE-->

<div id="footer">

FOOTER GOES HERE

</div>

</body>
</html>


I think that should work,
Dutch :D