Hello,
An on the contact page and i would like to change the jicons-text with font awasome icons. How to do that?

    4 days later

    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.

    Write a Reply...
    You need to Login to view replies.