2

nextgen gallery(powered by 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

これらの 2 つのページの画像の動作が異なるのは奇妙ですが、次の簡単な修正を受け入れることができる場合があります。

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

wp-content の前にルート スラッシュを追加するだけです。

于 2012-09-16T21:19:15.853 に答える