Hello need help with changing the collection sale price color to red on IMPULSE THEME

Hello need help with changing the collection sale price color to red on IMPULSE THEME

Just put the following at the end of the theme.css file.

.grid-product__price {

color:red;

}

Note: you can change the text “red” to any color code as well.

Bro it does not work

can you share your store url so and screenshot as well where you need to change the color to red? if store has frontend password, lease share password as well or disable password.

https://bbabilon.com/

First of all undo the changes you made because there is some syntax error in that code.
and after that just paste the exact code from below to your theme.css.liquid at the end of the file. It should work fine now.

div.grid-product__meta > div.grid-product__price > span.money {
color: red;
}

No idea how to undo or get the file back to original

Just remove this line of code.

Okay the collection sale price is red, help me now to get back the product sale price in red

For the product page to make the sale price red you need to put the below code at end of the file.

span.product__price.on-sale > span {
color: red;
}

Note: You can make these color changes from the customize section as well, but if you don’t know how to do this then making changes in code is fine.

Thank you for your help, it worked. Tried to change the colors from the customize section, when I did that the theme change compare at price and sale price in the chosen color, can’t understand why such a expensive theme doesn’t have this setting.

You’re welcome!!

it’s ok if the theme doesn’t have this, you are able to achieve it with code. But if you want this option in the customize section you can either hire a developer or ask the theme support about this.

Hello, it’s me again, how to make the headline with small words on product and collection page, there is no option in customize settings.

There must be an option in the customize for this, but if there is not. then you can use the following code. Add this code in the same file at the bottom where you have added the above code.

/* For product page heading */

h1.h2.product-single__title {
font-size: 15px;
}

/* for collection page each product heading */

.grid-product__title.grid-product__title–body {
font-size: 15px;
}

Note: you can change the number in font size to make the size what you want.

My idea is the words to not be with capital letters

To make all letters small use the following.

/* For product page heading */

h1.h2.product-single__title {
text-transform: lowercase;
}

/* for collection page each product heading */

.grid-product__title.grid-product__title–body {
text-transform: lowercase;
}

To make first letter capital and rest small of a word use the following.

/* For product page heading */

h1.h2.product-single__title {
text-transform: capitalize;
}

/* for collection page each product heading */

.grid-product__title.grid-product__title–body {
text-transform: capitalize;
}

Thanks !!!