Hello,
You can change the close icon using a custom Unicode character in Theme Settings > Typography > Icon Fonts. If you want a different icon, you can update the content code from there.
If you have a specific trash icon, You can download a trash can icon, upload it to the Media Library, and apply the following CSS to replace the default close icon with an image:
.woocommerce-mini-cart .remove {
background: url("YOUR_IMAGE_URL_HERE") no-repeat center center !important;
background-size: contain !important;
display: inline-block !important;
width: 40px !important; /* Adjust size as needed */
height: 40px !important; /* Adjust size as needed */
text-indent: -9999px; /* Hides the default 'X' */
border: none !important;
}
Upload the trash can icon to the Media Library.
Copy the image URL and replace “YOUR_IMAGE_URL_HERE” in the CSS.
Add the CSS to Theme Settings > Custom CSS > Global CSS.
Best Regards,