<div class="<?php 
    theme_layout_style();
    ?>
">
      <div class="row">
        <div class="col-xs-12">
          <h3 class="block-title"><?php 
    echo $eli_options['gallery_block_title'];
    ?>
</h3>
        </div>
      </div>
      <div class="gallery-wrap clearfix">      
        <?php 
    foreach ($album_images as $key => $img) {
        $gcol = get_eli_gallery_grid_col($img->grid_size);
        $images = get_gallery_popupobjs($img->ID, $img->title . ' | ');
        ?>
        <div class="gcol-xs-<?php 
        echo $gcol . ' ' . $img->grid_size;
        ?>
 gallery-gcol">
            <div class="thumbnail gallery-thumb">
              <img alt="<?php 
        echo $img->title;
        ?>
" src="<?php 
        echo $img->thumbnail;
        ?>
">
              <div class="caption">              
    theme_layout_style();
    ?>
">
      <div class="row">
        <div class="col-xs-12">
          <h3 class="block-title"><?php 
    echo $eli_options['gallery_block_title'];
    ?>
</h3>
        </div>
      </div>
      <div class="gallery-wrap clearfix">      
        <?php 
    foreach ($galleries as $key => $attachment) {
        $grid_size = get_post_meta($attachment->ID, 'tiles_grid', true);
        $gcol = get_eli_gallery_grid_col($grid_size);
        $img_src = wp_get_attachment_image_src($attachment->ID, 'full');
        ?>
        <div class="gcol-xs-<?php 
        echo $gcol . ' ' . $grid_size;
        ?>
 gallery-gcol" id="attachment-<?php 
        echo $attachment->ID;
        ?>
">
            <div class="thumbnail gallery-thumb" >
              <img alt="<?php 
        echo $attachment->post_title;
        ?>
" src="<?php 
        echo @$img_src[0];