更新主题后,悬停图像不会显示

时间:2013-02-09 22:43:13

标签: css hover

这是我在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是否缺失,不,文件就在那里。

1 个答案:

答案 0 :(得分:0)

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

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

}

我希望这有帮助!