Home Forums WoodMart support forum Replace icon (- & X) Reply To: Replace icon (- & X)

#141297

Hello,

Please add this code to the Theme Settings > Custom CSS > Global:

body .woodmart-wishlist-remove,
body .widget-heading .close-side-widget {
    padding-right: 0;
}
body .woodmart-button-remove:before,
body .widget-heading .close-side-widget:before {
        display:none;
}
body .woodmart-button-remove:after,
body .widget-heading .close-side-widget:after {
        position: relative;
        display: inline-block;
    content: "\f2d4";
    font-family: FontAwesome;
    background-color: transparent;
        width: 15px;
        height: 15px;
        line-height: 15px;
        margin-top: 0;
        margin-left: 2px;
}
body .widget-heading .close-side-widget:after {
    margin-left: 5px;
}
body .woodmart-button-remove:hover:after,
body .widget-heading .close-side-widget:hover:after {
   -webkit-transform: none;
   transform: none;
}

Best Regards