colorsstudio Hi
You can edit this file: /templates/ja_seven/html/com_contact/contact/default_address.php
For example, if you want to change the Address to this fontawesome icon: https://fontawesome.com/icons/location-dot?f=classic&s=solid
Change this:
<span class="<?php echo $this->params->get('marker_class'); ?>" >
<?php echo Text::_('TPL_CONTACT_ADDRESS').':'; ?>
</span>
To:
<span class="<?php echo $this->params->get('marker_class'); ?>" >
<i class="fa-solid fa-location-dot"></i>
<?php echo ':'; ?>
</span>
Apply the same for other icons.
Hope this helps.