I want to change the icons on Ajax portfolio preview container for next previous and close
Hi susiepark88!
Are you wanting to change the icon to another entypo icon? If so then open up /enfold/config-templatebuilder/avia-shortcodes/portfolio.php
and starting on line 367 you’ll see this,
<a href='#prev' class='ajax_previous' ".av_icon_string('prev')."></a>
<a href='#next' class='ajax_next' ".av_icon_string('next')."></a>
<a class='avia_close' href='#close' ".av_icon_string('close')."></a>
Replace the “prev”, “next”, and “close” with whatever icon you want. You can find the names in /enfold/functions.php
starting on line 154,
'standard' => array( 'font' =>'entypo-fontello', 'icon' => 'ue836'),
'link' => array( 'font' =>'entypo-fontello', 'icon' => 'ue822'),
'image' => array( 'font' =>'entypo-fontello', 'icon' => 'ue80f'),
Regards,
Elliott