I wanted to know how I can wait a little more the line "|" between phone and phone I mean give it more air, I tried to give it margin-left but it does not look good stylistically.
<ul class="atencion">
<?php if(have_rows('telefonos_header',4)):
$raya = " | ";
?>
<?php
while(have_rows('telefonos_header',4)):
the_row();
?>
<li>
<i class="icon-phone" aria-hidden="true"></i>
<strong><?php the_sub_field('telefono_del_lugar',4); ?></strong>
<a href="tel:<?php the_sub_field('numero_visible',4); ?>" title="Telefeno Camconnection"><?php the_sub_field('numero_visible',4); ?></a><?php echo $raya; ?>
</li>
<?php
$raya = "";
endwhile; ?>
<?php endif; ?>
</ul>