templates/layout/customelement_image_extended.html5 line 6

Open in your IDE?
  1. <div class="<?php echo $this->class?> block <?php echo $this->field('frame')->value(); ?> <?php echo $this->field('style')->value(); ?> <?php echo $this->field('halign')->value(); ?> <?php echo $this->field('mob_align')->value(); ?><?php echo $this->cssID?><?php if ($this->style): ?> style="<?php echo $this->style?>"<?php endif; ?>>
  2.     <div class="ce_image_extended_inside" style="<?php if($this->field('margin_right')->value()): ?> margin-right: <?php echo $this->field('margin_right')->value(); ?>%;<?php endif; ?><?php if($this->field('margin_left')->value()): ?> margin-left: <?php echo $this->field('margin_left')->value(); ?>%;<?php endif; ?>">
  3.         <?php if($this->field('render_svg')->value()): ?>
  4.         <?php echo file_get_contents(TL_ROOT.'/'.$this->field('image')->generate()); ?>
  5.         <?php else: ?>
  6.         <?php echo $this->field('image')->html(); ?>
  7.         <?php endif; ?>
  8.     </div>
  9. </div>