我在wordpress中自定义我的画廊,我发现了问题。如何将图像缩略图上的字体更改为白色?
这是我的网站,问题是主要的图库:
感谢您的回答和反馈。
最诚挚的问候 侏儒
答案 0 :(得分:2)
<h3>
元素已经变为白色,但z-index
元素过低。将z-index: 2;
添加到.foogallery-album-gallery-list .foogallery-pile h3
,您就可以了。
答案 1 :(得分:1)
要修复它,您必须只搜索或添加CSS选择器.foogallery-album-gallery-list .foogallery-pile h3
并在属性中:
.foogallery-album-gallery-list .foogallery-pile h3 {
background: transparent !important;
color: #fff !important;
z-index: 10;
}