此代码:
<div class="social">
<span class="st_facebook_large"></span>
<span class="st_twitter_large"></span>
<span class="st_email_large"></span>
<span class="st_sharethis_large"></span>
<span class="st_plusone_button_large"></span>
</div>
导致此样式错误:
我的问题:如何让这张照片出现在“分享这个”按钮的在前面?
答案 0 :(得分:1)
添加:
.yith_magnifier_zoom_wrap {z-index:999 !important}
答案 1 :(得分:1)
z-index
#single-product .images > .yith_magnifier_zoom_wrap
或强>
在z-index:99;
#single-product .images > .yith_magnifier_zoom_wrap
或强>
将z-index:99;
指定为类名为yith_magnifier_zoom_magnifier
的div的inline-CSS,因为不建议在CSS中使用!important
。
答案 2 :(得分:0)
尝试:
.social {
position:absolute;
z-index:999;
margin-left: -50px;
}
.image
{
position:absolute;
z-index:1;
}
您可能需要使用负边距或填充来使按钮不被图像覆盖...