My theme doesn’t show a strike through when I run a sale. How do i have the strike through become visible? any help would be really appreciated. I am very new to this.
thanks so much
My theme doesn’t show a strike through when I run a sale. How do i have the strike through become visible? any help would be really appreciated. I am very new to this.
thanks so much
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.product-top__content .price .bold-compare-at-money{
text-decoration: line-through !important;
}
Please place this code at the end of theme.scss
.bold-compare-at-money {
text-decoration: line-through;
}
Thank you for the response. Strange enough my theme does not have a theme.scss file.
Should I add it into this code? Please forgive my ignorance. Still learning how Liquid works.
.product-price {
width: 100%;
font-size: 18px;
font-weight: 400;
line-height: 27px;
margin-bottom: 32px;
text-transform: none;
.bold-compare-at-money {
display: none;
}