Two questions :)
Is it possible to receive a css to
1. Make the Chart icon a bit bigger? Maybe an other color as well.
2. On mobile have the product grid in 2 coloms instead of one…
:)
Hey limedrop,
Could you post a link to where we can see the elements on your actual site please?
Best regards,
Rikard
Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
1.
.cart_dropdown_link span:before {
font-size: 25px;
}
2.
@media only screen and (max-width: 767px) {
.template-shop.avia-content-slider .products .product {
width: 49%;
}
}
Best regards,
Rikard
Thank u!
Is there an easy way to also change the icon to something else?
Like a bag? Like on this page?
https://no.bybiehl.com
Hi,
Yes, that should be possible. Try to add this filter in the functions.php file to replace the cart with a bag icon.
// adjust default icon font
function avia_add_custom_icon($icons) {
$icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue85a');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
You can also upload your own icon using the Enfold > Import/Export > Iconfont Manager.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
Ismael