Hi
On the portfolio ajax window that pops up there are two grey arrows and a close (cross icon)
My client wants the cross to look like the arrows so it DOES NOT have a circle around it.
Is that possible using css or do i need a new icon?
http://ordovas.jacl.co.uk/publications/
thanks
Jonathan
Hey Jonathan!
Try adding this at the very end of your theme functions.php file:
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
function avia_add_custom_icon($icons) {
$icons['close'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue813');
return $icons;
}
Cheers!
Josue
Beautiful – that works – THANK YOU :)