Viewing 5 reply threads
You must be logged in to reply to this topic.
Is it possible to add a new custom icons for the social widget in the footer?
Hello,
You can add a new custom font in Folie theme. Please check the following link: https://support.codeless.co/?ht_kb=add-custom-font-in-june
Best regards!
Hello,
I don‘t need a custom font. I need a custom Social media ICON for the footer of folie.
Regards,
Benjamin
Hello,
Sorry for misunderstanding. You can change the icon in file folie\includes\widgets\codeless_socialwidget.php
Look for these lines:
if( !empty($facebook) )
echo '<li class="facebook"><a href="'.esc_url($facebook).'"><i class="cl-icon-facebook"></i></a></li>';
Best regards!
Thank you, it works! :)
Another question: Is it possible to set somewhere that the links (eg Twitter) open in a separate browser window?
Hello,
Yes, in the same file, same block of code. Example:
If you want to open facebook social in new tab, the above line:
echo '<li class="facebook"><a href="'.esc_url($facebook).'"><i class="cl-icon-facebook"></i></a></li>';
Will be edited to:
echo '<li class="facebook"><a href="'.esc_url($facebook).'" target="_blank"><i class="cl-icon-facebook"></i></a></li>';
The code added in it is: target="_blank"
You can add this to all socials, or just the ones you want to open i new tab.
Best regards!
You must be logged in to reply to this topic.