Tagged: font awesome, responsive, woocommerce cart
Hi!
I would like to put the font Awesome shopping bag instead of the class shopping cart, and also I would like to set the cart in th menu only, I tried to customize the css but I do something wrong, the icon does not stay in the menu bar (the icon goes too much on the left and overlaps with the other icons/words and the counter-item circle goes down) when I shrink the windows … help!!!
Anyone could help? please, it’s important!
Thank you!!!
Hi,
Thank you for using Enfold.
You can use the “avf_default_icons” filter in the functions.php file to change the default icon used by the theme. Example:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons) {
$icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue85a');
return $icons;
}
Adjust the icon value with your own custom font.
Related thread: https://kriesi.at/support/topic/menu-left-logo-centered-search-icon-right/#post-1071657
Best regards,
Ismael
Hi opificioilgranello,
Glad we could help :)
Please let us know if you need anymore help.
Best regards,
Victoria