开发者

Problems with background image?

I added a background image to my site the issue is that it开发者_运维知识库 pushess the footer way down,

the background image is in the back with a bunch of other div tags but the footer remain in the bottom way in th bottom, i tried setting a "no-repeat" but if i do that it removes the image, if i set a height it also affects the other div tags/

any idea what might be wrong?

thanks


Try this (but change the url contents to the path of your background image):

<style type="text/css">
    body {
        background-image: url('../images/bg.jpg');
    }
</style>


It's hard to know without seeing your code, but it sounds like your footer div is outside of the div which has the background applied to it.

For example:

<div id="page_content_with_background_applied">
    ...
</div>
<div id="footer">
    ...
</div>

Should probably be something like this.

<div id="page_content_with_background_applied">
    ...
    <div id="footer">
        ...
    </div>
</div>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜