2

我有一个使用 nextgen 画廊的 wordpress 网站问题(由 supersized 提供支持)所以我创建了一个 div 来管理背景图片

<div>
<img id="backgroundx" title="" alt="" src="wp-content/uploads/2012/09/DSC_5269.jpg"/>
</div>

它的CSS是

#backgroundx {
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}
.container {
    position: relative;
    z-index: 1001;
}

一切都很好,但是当我进入 NextGEN 类别(例如http://newlightphotography.org/category/bambini-2)时,它不显示背景但是每隔一页(包括扩展图库http://newlightphotography.org/ madalina-149)工作得很好。

4

1 回答 1

1

虽然这两个页面具有不同的图像行为很奇怪,但您可能会发现这个快速修复是可以接受的:

<div>
<img id="backgroundx" title="" alt="" src="/wp-content/uploads/2012/09/DSC_5269.jpg"/>
</div>

只需在 wp-content 之前添加一个根斜线。

于 2012-09-16T21:19:15.853 回答