OK, I see a couple of problems. The first is that the #footer-container
has a set height of 275px, which matches the height of the background image.
The background image is also set to repeat-x
(horizontally).
But the other problem you have is that the actual background image for the footer has a white line on the top on it, which means that even if you set repeat-x
to just repeat
, you’ll get the white line on top repeating too. This is the image.
I figure you’ve got a couple of options, the least of which is to open the background image in an image editor and make it taller. You’d then need to adjust the height set on #footer-container
to match accordingly.
A more flexible way to go about it would be:
- Remove the white line from the background image via an image editor and set the background in
#footer-container
to repeat
(from repeat-x
).
- Next, you’d adjust the height of
#footer-container
to fit the footer widgets AND your copyright div.
- Last, if you liked the white line, you could fake it using a border-top on
#footer-container
, something like border-top: 5px solid #fff;
.
In essence, changing:
#footer-container {
background: url("images/footer_repeat.png") repeat-x scroll center center transparent;
height: 275px;
margin: 0;
}
to something like this:
#footer-container {
background: url("images/footer_repeat.png") repeat scroll center center transparent;
height: 325px;
border-top: 5px solid #fff;
margin: 0;
}
Hope that helps.