Does Anyone Know How To Change The Airplane Icon?

Hi, this will sound stupid but I have been looking around how to replace the plane in the cart where clients calculate the shipping cost. I would like to replace for a Truck because our delivery is only by ground, doesn't have any sense to have a plane when is not the case. Also a lot of clients ask for sending oversea items because that little plane. GOD

Try to add the following code to the CSS section of the Theme editor

.ty-statistic-list-shipping-method {
    .ty-icon-flight:before {
         font-family: uni2-icons,sans-serif;
         content: "\e955";
         font-size: 16px;
    }
}

(!) Not tested

Try to add the following code to the CSS section of the Theme editor

.ty-statistic-list-subtotal {
    .ty-icon-flight:before {
         font-family: uni2-icons,sans-serif;
         content: "\e955";
         font-size: 16px;
    }
}

(!) Not tested

The icon I would like to show is a truck and the code is ty-icon-shipping do I replace ty-icon-flight with this code?

Try to add the following code to the CSS section of the Theme editor

.ty-statistic-list-subtotal {
    .ty-icon-flight:before {
         font-family: uni2-icons,sans-serif;
         content: "\e955";
         font-size: 16px;
    }
}

(!) Not tested

Nope, the plain still there after adding the CSS code :-(

I have corrected code in my initial post

I have corrected code in my initial post

Excellent! Working.