Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Cart Icon on newer enfold install and import demo #1258893

    Further add to quick-css

    .cart_dropdown_link {
    right: 1px;
    }

    this will fix the number of items getting cut off bt the scroll bar

    in reply to: Cart Icon on newer enfold install and import demo #1258891

    OK i figured out a better way using functions.php and it works you may close this

    // WooCommerce: enfold change cart to bag start
    //// =============================================================================
    add_action(‘init’, ‘avia_replace_default_icon’, 10, 1);
    function avia_replace_default_icon($icons) {
    global $avia_config;

    $avia_config[‘font_icons’][‘cart’][‘icon’] = “ue85a”;
    $avia_config[‘font_icons’][‘cart’][‘font’] = ‘entypo-fontello’;
    return $icons;
    }
    // =============================================================================
    // WooCommerce: enfold change cart to bag end

    in reply to: Cart Icon on newer enfold install and import demo #1258885

    .cart_dropdown_link > span:before {
    content:’\e80e’;
    }

    Can you see why it appears this way on the site please.

    I changed to the bag icon and still same issue

    .cart_dropdown_link > span:before {
    	content:'\e85a';
    }

    }

    • This reply was modified 3 years, 5 months ago by vonone.
    in reply to: Cart Icon on newer enfold install and import demo #1258785

    i just put it. it is not replaced perfect as the aligment is wrong,
    can you assign in styling this correctly.

    This modification is making the scrollbar appear on the right on the pc

    thanks

    • This reply was modified 3 years, 5 months ago by vonone.
Viewing 4 posts - 1 through 4 (of 4 total)