I want to remove the BLUE BAR that appears on every value in the Crave theme.
Cant find the value when I inspect element. Want to remove it completely or turn it invisible in CSS code. Any suggestions?
A user seeks to remove a blue bar appearing under property values in the Shopify Crave theme. Initial attempts to locate the element via browser inspection were unsuccessful, suggesting the styling may be hidden or dynamically generated in the CSS code.
Troubleshooting Steps:
Proposed Solution:
A CSS fix was provided to add at the bottom of the base.css file:
.card--card:after {
box-shadow: unset !important;
}
This targets the card element’s after pseudo-element and removes its box-shadow property, which likely creates the unwanted blue bar effect.
I want to remove the BLUE BAR that appears on every value in the Crave theme.
Cant find the value when I inspect element. Want to remove it completely or turn it invisible in CSS code. Any suggestions?
Hello @baileyg1
If you can share your store URL it will easy for me to inspect.
Hi @baileyg1 ,
Dan here from Ryviu: Product Reviews & QA.
Could you share your store URL to check?
Best Regards,
Dan
Password is Fitshake
Please add this code at the bottom of your base.css file
.card--card:after {
box-shadow: unset !important;
}