Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Footer wont separate Re: Footer wont separate

#68719
TheDoc
Member

You have this link before your footer:

<link href="/footercss.css" rel="stylesheet" type="text/css">

This won’t work. It needs to be in your <head></head>.

Change this:

Code:
div#footer {
background: url(images/footer.jpg);
heights: 300px;
color: white;
padding: 15px 0 10px 0;
text-align: center;
margin: 10px 0px 0px 0px;
margin-top:20px;
}
#footer {
margin-top:20px;
}

to:

Code:
div#footer {
background: url(images/footer.jpg);
heights: 300px;
color: white;
padding: 15px 0 10px 0;
text-align: center;
margin: 20px 0px 0px 0px;
}

Also, you have an image on your footer, but it’s only showing up as a solid color for me. You shouldn’t use an image if you’re just displaying a solid color.

All in all, the more I look at the site, the more problems I see with the code I’m afraid.