perfectdesign
Programmer
I'm trying to set the footer settings in my stylesheet that will keep the footer content below the general page content...not necessarily stick it to the bottom of the page, just keep it below the content regardless of how much actual content there is. I've searched for almost 2 weeks through various search engines and nothing that I have found works.
Here is the css code:
And here is the html code:
And for reference, here is the page itself (you can see that the footer can be seen in the same place as the logo image):
I'm still fairly new to designing with stylesheets as opposed to tables so I was greatly appreciate any help.
Crystal
Here is the css code:
Code:
#footer {
position: absolute; bottom: 0px; left: 0;
width: 100%;
height:auto;
}
And here is the html code:
Code:
<body>
<div id="page">
---various content---
<div id="footer">
This site designed and maintained by <a href="[URL unfurl="true"]http://www.perfectionindesign.com"[/URL] target="_blank">Perfection In Design</a>
</div>
</div>
</body>
And for reference, here is the page itself (you can see that the footer can be seen in the same place as the logo image):
I'm still fairly new to designing with stylesheets as opposed to tables so I was greatly appreciate any help.
Crystal