Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #278581

    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

    #279037

    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

    #279347

    Beautiful – that works – THANK YOU :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Portfolio ajax window change the close icon’ is closed to new replies.