Forum Replies Created
-
AuthorPosts
-
Further add to quick-css
.cart_dropdown_link {
right: 1px;
}this will fix the number of items getting cut off bt the scroll bar
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.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 4 years, 4 months ago by
vonone.
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 4 years, 4 months ago by
vonone.
-
This reply was modified 4 years, 4 months ago by
-
AuthorPosts