在Wordpress中自定义我的画廊

时间:2016-04-23 21:13:33

标签: css wordpress

我在wordpress中自定义我的画廊,我发现了问题。如何将图像缩略图上的字体更改为白色?

这是我的网站,问题是主要的图库:

http://www.elefantti.iq.pl

感谢您的回答和反馈。

最诚挚的问候 侏儒

2 个答案:

答案 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;
}