wordpress gallery-columns-6右侧的空白

时间:2018-04-16 12:14:31

标签: wordpress gallery whitespace

我在这个wordpress网站的右侧有这个空白区域 - 但它只是出现了一个gallery-columns-6。

图库4可以,图库5也可以,等等。

实时链接https://www.magykporto.com/photo/

已经尝试过没有custom.css而没有找到style.css,问题仍然存在。

1 个答案:

答案 0 :(得分:2)

每个元素的宽度定义为16%,6 x 16%= 96%,这就是为什么你有空格的原因。我在其他画廊专栏工作,因为100%可以通过数字5和4均匀分割。

添加此CSS以修复图库项目宽度为16.666%reocurring。

#gallery-2 .gallery-item {
    width: 16.666% !important;
}