背景png没出现?

时间:2012-10-12 13:21:43

标签: css image png

这个网站(click)在这里应该看起来像这个网站(click)。第一个链接在BVCommerce购物车中,第二个链接是最初设计的HTML和CSS。您会在第一个链接上注意到中心内容稍微偏离中心,并且错过了阴影背景,这是我的主要问题。 (应该显示的图像是images / bg.png)

第一个网站有一些错误,但我真的只是想让这个背景正确显示。

第一个网站CSS:justicejewelers.com/css/styles.css

第二个网站CSS:justicejewelers.rcmhosting.com/css/styles.css

第一个网站图片:justicejewelers.com/images/bg.png

第二个网站图片:justicejewelers.rcmhosting.com/images/bg.png

更新

我将酒吧和背景gif结合起来以节省一些心痛。但是关于如何使整个中心区域向右移动的任何想法都适当?

3 个答案:

答案 0 :(得分:0)

我不知道你的主要问题,但在第一页我会更改头部内的文字。由于垃圾邮件保护,Google等搜索机器人通常会忽略头部信息过多的网页。

答案 1 :(得分:0)

我相信你在CSS中有这样的东西:

.wrapper { background: url("images/bg2.gif") repeat-y scroll center top transparent; padding-top: 0; }

它覆盖了这个:

.wrapper {
background: url("../images/bg.png") repeat-y scroll center top transparent;
padding-top: 0;
}

答案 2 :(得分:0)

关于背景错误,Firebug显示无重复:

/BVModules/Themes/Painted%20Paper/styles/styles.css:

url("../images/bg.png") no-repeat scroll left top transparent;

此外,您的#maincontent div小于背景图片的宽度(第一个网站没有填充(1016像素对960像素)

我猜您应该删除/BVModules/Themes/Painted%20Paper/styles/styles.css CSS链接 并试试像Firebug这样的帮手:)