0

这是我在 style.css 中与图像和悬停图像相关的代码。

#gallery_prettyphoto.portfolio a span
{
z-index: 2000;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 98%;
display: none;
cursor: pointer;
}

.portfolio .gallery_2columns a span.image_hover
{background: black url("images/gallery_hover/hover_image_big.png") no-repeat center center;
}

一切都很好,直到我将主题更新到新版本。我检查了 hover_image_big.png 是否丢失,不,文件在那里。

4

1 回答 1

0

这最近发生在我身上,我花了很长时间才找到解决方案,但事实证明你必须像这样使用编写 css:

.portfolio .gallery_2columns a span.image_hover
{
background: black;
background: url("..images/gallery_hover/hover_image_big.png") no-repeat center center;

}

我希望这有帮助!

于 2013-02-09T22:47:39.523 回答