Can anyone help me figure out why the footer is not appearing on this page: http://wakinguptogether.org/index_test6.html
I'm using the footer CSS from one of the Dreamweaver supplied pages and I'm a beginner with CSS. I'm at my wits end. This is happening on another site i'm working on as well. Thanks in advance for any help!
Change:
}</script>
</script>
</script>
<p></p><script type="text/javascript">
<div class="footer">
<p>Copyright 2012, Elizabeth Rabia Robert & The Boulder Institute</p>
<!-- end .footer --> </div>
<!-- end .container --> </div>
to:
}</script>
<div class="footer">
<p>Copyright 2012, Elizabeth Rabia Robert & The Boulder Institute</p>
<!-- end .footer --> </div>
<!-- end .container --> </div>
That should sort the footer issue. However, you may want to validate your page as you have styles and scripts all over the place.
Thanks for your help! Unfortunately the code fix you suggested resulted in the footer showing up at the bottom of the right side bar instead of at the bottom of the page. Any other suggestion?
I reposted the page again with your suggestion added: http://wakinguptogether.org/index_test6.html
Try this: http://pastebin.com/jxY49vkb
What I did:
Rik
I feel pretty sheepish asking, but I have the exact same problem on this page, on a different site: http://www.skytribe.com/contact.html, the footer doesn't display. Yet on this page: http://www.skytribe.com/video.html, the footer does shows up? Thanks again for your help, you rock!
1111lauer wrote:
I feel pretty sheepish asking, but I have the exact same problem on this page, on a different site: http://www.skytribe.com/contact.html, the footer doesn't display.
which browser are you using to view your pages? I tested your site in FF and IE9 and I can see the footer all right but not at the correct place. Click on this image to see it framed in red color:
Good luck.
Thanks for the feedback: I forgot to say in my post, that the footer, when correctly displayed, looks like it does on this page: http://www.skytribe.com/video.html. So it's a seperate entity. The copy in the footer is correct but it doesn't layout correctly as shown in the link in this post.
That's the problem with having your styles embedded on each page rather on one single CSS file - things change per page and you lose track. Combine all your styles into one CSS file and link each page to the same sheet. This will keep things consistent.
www.skytribe.com/contact.html
/* ~~ The footer ~~ */
.footer {
position: absolute;
background-image: url(images/Footer2.jpg);
background-repeat: no-repeat;
height: 75px;
padding-top: 10px;
padding-right: 0;
padding-bottom: 10px;
padding-left: 0px;
text-align: center;
width: 100%;
float: left;
clear: right;
font-style: normal;
}
www.skytribe.com/video.html
/* ~~ The footer ~~ */
.footer {
position: relative;/* this gives IE6 hasLayout to properly clear */
clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
background-color: #000000;
background-image: url(images/Footer3.jpg);
background-repeat: no-repeat;
height: 64px;
padding-top: 15px;
padding-right: 0;
padding-bottom: 10px;
padding-left: 0;
text-align: center;
}
Thanks for the suggestion - I did try it and it didn't work (I reposted the file with the new CSS - http://www.skytribe.com/contact.html ). I've tweaked the CSS of the footer so much and found nothing that works. Really appreciate your time/help!
North America
Europe, Middle East and Africa
Asia Pacific