Home Forums WoodMart support forum text-decoration for del price Reply To: text-decoration for del price

#569927

Hello,

Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS. Change the code as per your requirements.

.price del {
    text-decoration: none !important;
}

/* Add line-through only to the price amount */
.price del .woocommerce-Price-amount {
    position: relative;
}

.price del .woocommerce-Price-amount::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px; /* Adjust the thickness of the line */
    background: #000; /* Adjust the color of the line */
    top: 50%; /* Align the line in the middle */
    transform: translateY(-50%);
}

Best Regards.