我对Justified Gallery没什么看法。我无法消除图片周围的间距,因此图片无法正确对齐网站网格。
.photo-gallery包装纸上似乎有填充物,但没有填充物。在此页面上检查红色背景:http://dev.morris-chapman.com/wpdivi/news/nam-at-rhoncus-lacus/
我尝试在容器上应用负边距以使其适合网格,但是它不起作用。
答案 0 :(得分:0)
我认为您正在使用此相册画廊插件:http://miromannino.github.io/Justified-Gallery/options-and-events/
然后在wp-content/themes/mc.init.js
的js文件中有以下代码:
$(".photo-gallery").justifiedGallery({
rowHeight: 300,
margins: 10,
});
我认为,如果您将该边距设置为0
,问题就会消失。
这只是一个假设,因为我无法对其进行测试。
也许我理解您的问题:这是边界,而不是利润!
默认情况下,插件将border设置为-1:
确定图库的边框大小。负值 边框将与边距相同。
http://miromannino.github.io/Justified-Gallery/options-and-events/
在演示页面中,边框设置为0
,但是如果您未在厨房中设置边框,则其边距相同:即10px
。
因此,要解决此问题,您可以编写以下代码:
$(".photo-gallery").justifiedGallery({
rowHeight: 300,
margins: 10,
border:0
});