Anyone have any xhtml and css experience? Maybe you can help me.
I am currently designing my own website:
www.satoriglass.com
I want to put a footer on all of my pages. I want the footer to be of course at the bottom of the page. I have the following CSS relevant to the footer:
I also have this html associated with my footer (irrelevant code has been cut out):
When I try and place a footer in my html, it ends up smushing up between the right and left column content instead of staying at the bottom where I want it. You can see what's going wrong here:
www.satoriglass.com/test.html
Anyone have any ideas what's wrong??
I am currently designing my own website:
www.satoriglass.com
I want to put a footer on all of my pages. I want the footer to be of course at the bottom of the page. I have the following CSS relevant to the footer:
| Code: |
|
#footer { height: 100px; padding: 28px 3px 0 5px; margin: 20px 0 20px 0; background: url(http://www.satoriglass.com/images/footer.gif) no-repeat top center; width: 100%; } p#footer:first-letter { font-size: 1.0em; } #footer img.right { padding: 5px 2px 0 2px; border: 0px; } |
I also have this html associated with my footer (irrelevant code has been cut out):
| Code: |
|
<body> <div id="siteBox"> <div id="content"> <div id="right"> Lots of code, etc.... </div> <div id="left"> Lots more code, etc.... </div> </div> <div id="footer" class="center"> <p> test test test! This is my footer text...not quite right eh? </p> </div> </div> </body> </html> |
When I try and place a footer in my html, it ends up smushing up between the right and left column content instead of staying at the bottom where I want it. You can see what's going wrong here:
www.satoriglass.com/test.html
Anyone have any ideas what's wrong??
