Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1331764

    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…

    :)

    #1331790

    Hey limedrop,

    Could you post a link to where we can see the elements on your actual site please?

    Best regards,
    Rikard

    #1331807
    #1331841

    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

    #1331856

    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

    #1331904

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.