The problem is that the footer or footer is attached to the images that are going up in the gallery module, but the problem is that it does not make the line jump.
GALLERY CODE
<!-- gallery -->
<div class="gallery" id="gallery">
<div class="w3ls-heading">
<h3>Gallery</h3>
<p class="sub">We know that we are your best option</p>
</div>
<?php
$results = $mysqli->query("SELECT idgaleria, nombres, descripcion, imagen FROM galeria");
if($results){
//fetch results set as object and output HTML
$products_item="";
//../vistas/img/galeria/fish/fish.jpg18-11-18-02-11-28534.jpg
while($obj = $results->fetch_object())
{
$products_item .= <<<EOT
<div class="gallery-grids-row">
<div class="col-md-3 gallery-grid">
<div class="wpf-demo-4">
<a href="{$obj->imagen}" class="jzBoxLink item-hover" title="SPOT">
<img src="{$obj->imagen}" alt=" " class="img-responsive" />
<div class="view-caption">
<p>Zoom</p>
</div>
</a>
</div>
</div>
</div>
EOT;
}
echo $products_item;
}
include"pie.php";
?>
I WANT YOU TO SEE THIS WAY AND THE JUMP AND AFTER THE FOOTER: