Home Forums WoodMart support forum Change the Cart Icon instead Bag Icon in all possible site

Change the Cart Icon instead Bag Icon in all possible site

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #334551

    guanacostudio
    Participant

    See private content.

    Attachments:
    You must be logged in to view attached files.
    #334611

    Luke Nielsen
    Keymaster

    Hello,

    Thank you for reaching out to us!

    1. In order to change the cart icon, try adding the following custom CSS code to the “Global Custom CSS” field in Theme Settings -> Custom CSS.

    .product-grid-item .wd-add-btn-replace .add-to-cart-loop:before {
        content: "\f217";
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
    }

    In the “content” attribute you can change your icon using Unicode from the “Font Awesome” service (https://fontawesome.com/).

    2. To be able to make full width “add to cart” and “quantity” buttons on mobile devices, you should add this custom CSS to the “Custom CSS for tablet” and “Custom CSS for mobile” fields.

    .wd-hover-quick .wd-add-btn div.quantity {
       left: 0; 
    }
    
    .wd-quantity-enabled .wd-hover-quick:not(.sold-individually) .product_type_simple {
        width: auto;
    }
    
    .wd-quantity-enabled .wd-hover-quick:not(.sold-individually) .product_type_simple:before {
        padding-right: 0;
        padding-left: 80px;
    }
    
    .wd-quantity-enabled .wd-hover-quick:not(.sold-individually) .product_type_simple:after {
        left: 62%;
    }

    Kind Regards

    #334620

    guanacostudio
    Participant

    Amazing!!! The best support ever! 2 things made it!

    Thanks!!!

    #334783

    Luke Nielsen
    Keymaster

    Hello,

    We are glad that your issue has been resolved.

    If you do not mind, can you please leave a 5 stars rating for our Theme & Customer and Technical Support by going here: http://themeforest.net/downloads It will allow us to release more updates and provide dedicated support in the future.

    Have a good day.

    Kind Regards

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Change the Cart Icon instead Bag Icon in all possible site’ is closed to new replies.