A space to discuss online store customization, theme development, and Liquid templating.
I was unable to change the color from black to red in the theme options. This is my link store: https://f82f32-e9.myshopify.com/
Go to Edit Code > open theme.liquid file and search for the </body> tag and above this tag just paste below code -
<style>
.price-item {
color: red;
}
</style>
Please let me know when works and mark as solution!
Hi @MonkataWe
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file -> Save
.card-information>.price {
color: red !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
PageFly - #1 Page Builder for Shopify merchants.
All features are available from Free plan. Live Chat Support is available 24/7.
Additionally, you can use this code to make the header centerable like this:
header {
grid-template-columns: unset !important;
}
nav.header__inline-menu {
display: flex;
flex-direction: row;
justify-content: center;
}
Please let me know if it works by giving it a Like or marking it as a solution!
PageFly - #1 Page Builder for Shopify merchants.
All features are available from Free plan. Live Chat Support is available 24/7.
Hi @MonkataWe
Do you like to make all red including the original price? or not?
Also, only on the feature collection or also in the product page?
This is code I use for the shared image.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
span.price-item.price-item--sale.price-item--last {
color: red;
}
And save.
can i make only the £28.99 red?