All prices has strikethrough xtra theme

Topic summary

A user reported that all product prices on their Shopify store suddenly display with strikethrough formatting. The site uses the Xtra theme.

Solutions Provided:

Two support responses offered CSS fixes to remove the strikethrough:

  • Solution 1: Add CSS targeting .old-price .money and .price span elements with text-decoration: unset !important

  • Solution 2: Navigate to Online Store > Theme > Edit Code > Assets > screen.css and add CSS targeting .price > span.money with text-decoration: unset !important at the bottom of the file

Both solutions involve adding custom CSS code to the theme’s stylesheet to override the strikethrough styling. Screenshots were included to demonstrate the expected result after applying the fix.

Status: Solutions provided, awaiting user confirmation if issue is resolved.

Summarized with AI on November 20. AI used: claude-sonnet-4-5-20250929.

Why all products suddenly has has strikethrough. I am using Xtra theme. Site is balikbayanstore.com.

@Balikbayanstore add below css into screen.css file

span.old-price .money {
    text-decoration: line-through !important;
}
.l4ca .price span, .l4cl .price span, #root .l4ca.summary .price span, .old-price {
 text-decoration: unset !important;
}

Hi @Balikbayanstore

Greetings from the Store Watchers Support Team! Happy to help you today.

  1. Go to online store > theme > edit code > assets > screen.css(file) and Paste the below code at the bottom of the file → Save
.price > span.money {
    text-decoration: unset !important;
}

After applying the above CSS code , it will show like the following screenshot:

Let me know If need further assistance

Regards,

Store Watchers Support Team