How do I add ’ from ’ in front of the price in featured collection dawn theme
pic for reference https://ibb.co/1GQdVdsq
website: https://smartappartde.myshopify.com/
password 1234
Thanks a lot.
A user wants to add the word ‘from’ before product prices in their featured collection using the Dawn theme.
Problem: The user provided a reference image and store URL (password-protected) showing where they want ‘from’ to appear before pricing.
Solutions Provided:
Two community members offered CSS-based solutions:
h5.shopbnb-text-4xl.shopbnb-money.undefined::before with content: "From "; at the bottom of the CSS file.shopbnb-listing-price:before with content: 'From'; and padding-right: 4px;Both solutions use CSS ::before pseudo-elements to inject the text. Screenshots were provided demonstrating the implementation. The discussion remains open with no confirmation from the original poster about which solution worked.
How do I add ’ from ’ in front of the price in featured collection dawn theme
pic for reference https://ibb.co/1GQdVdsq
website: https://smartappartde.myshopify.com/
password 1234
Thanks a lot.
Please add the following code at the bottom of your css file.
h5.shopbnb-text-4xl.shopbnb-money.undefined::before {
content: "From ";
}
Hope this works.