accionred
You can open this file: /templates/gk_evonews/html/com_content/article/default.php
Line 118, you can see this line of code:
<img src="<?php echo $images->image_fulltext; ?>" alt="<?php echo $this->escape($this->item->title); ?>" itemprop="image" />
add this line below it:
<p class="img_caption"> <?php echo htmlspecialchars($images->image_fulltext_caption) ?></p>
Then add this custom css:
.img_caption {
text-align: center;
}
To align the caption text in center.