<div class="row"> <?php $x = 0; while (have_rows('imagerepeater')) : the_row(); ?> <div class="col-md-4 gall-img"> <div class="gallery_inner"> <a class="fancybox" data-fancybox="gallery" href="<?php the_sub_field('images'); ?>"> <img alt="" data-src="<?php the_sub_field('images'); ?>" class="lazyloaded" src="<?php the_sub_field('images'); ?>"> </a> </div> </div> <?php $x++; endwhile; ?> </div> <?php foreach ($section['boxes'] as $Boxes) { ?> <div class="col-md-3"> <div class="deign-box"> <img src="<?= $Boxes['box_img'] ?> " alt=""> <h3> <?= $Boxes['box_text'] ?> </h3> </div> </div> <?php } ?> <div class="row service-rightwrapper"> <?php if (have_rows('servicerightbox')): while (have_rows('servicerightbox')): the_row(); $servicerightbox_head = get_sub_field('servicerightbox_head'); $servicerightbox_para = get_sub_field('servicerightbox_para'); $color = get_sub_field('color'); ?> <div class="col-md-6"> <div class="service-rightbox" style="background-color: <?= $color ?> ;"> <h4> <?= $servicerightbox_head ?></h4> <div class="service-rightboxpara"> <?= $servicerightbox_para ?></ </div> </div> </div> </div> <?php endwhile; endif; ?>