我的引导程序图库不正确。
在这里你可以看到它有太多的空间。我的图像并非每次都相同:
错误
我发现了应该是什么样子:
正确
我的代码:
<div class="gallery">
<div class="container">
<?php while($gallery = mysqli_fetch_array($db)) {
?>
<div class="col-md-3">
<figure class="effect-marley">
<a title="<?php echo $gallery['gallery_thumbnail']; ?>" data-lightbox="gallery-popup" href="<?php echo $CONF['installation_path'] . $gallery['gallery_thumbnail']; ?>">
<img src="<?php echo $CONF['installation_path'] . 'system/timthumb.php?src=' . $CONF['installation_path'] . $gallery['gallery_thumbnail'] . '&h=350&zc=1'; ?>" alt="<?php echo $gallery['gallery_name']; ?>" />
</a>
<figcaption>
<p><?php echo $gallery['gallery_name']; ?></p>
</figcaption>
</figure>
</div>
<?php } ?>
</div>
</div>