Change color of text

Solved

Change color of text

NikosBat
Excursionist
235 0 38

Hello guys, can I somehow change the color of the white text here?

 

Bildschirmfoto 2024-12-29 um 12.10.39.png

Accepted Solution (1)
Tech_Coding
Shopify Partner
501 127 125

This is an accepted solution.

Glad to hear my solution worked for you! I'm happy I could help. Please don't forget to like and mark it as accepted Solution – it would be greatly appreciated!

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Replies 11 (11)

Tech_Coding
Shopify Partner
501 127 125

Hello @NikosBat 
would you like to share your store URL and password if any please.
so i can check and provide you possible solution for your question.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
NikosBat
Excursionist
235 0 38

Hello Tech_Coding here is the url and password : https://www.nistore.de/products/nistore™-winterhandschuhe,  nikthe

Tech_Coding
Shopify Partner
501 127 125

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  .product span.badge.price__badge-sale.color-scheme-4 {
       color: #fff !important;
    }
</style>
RESULT:

Tech_Coding_0-1735471772647.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
NikosBat
Excursionist
235 0 38

Thanks tech_Coding can I also make the text a little more bold?

Tech_Coding
Shopify Partner
501 127 125

Hello @NikosBat 

Replace the above code with this code:

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  .product span.badge.price__badge-sale.color-scheme-4 {
       color: #fff !important;

       font-weightbold !important;
    }
</style>
RESULT:

 

Tech_Coding_1-1735476762850.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
NikosBat
Excursionist
235 0 38

Thank you Tech_Coding, that helped me

Tech_Coding
Shopify Partner
501 127 125

This is an accepted solution.

Glad to hear my solution worked for you! I'm happy I could help. Please don't forget to like and mark it as accepted Solution – it would be greatly appreciated!

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

DaisyVo
Shopify Partner
2474 315 363

Hi @NikosBat 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

span.badge.price__badge-sale {
    color: red !important;
}

 

Here is the result: image_720.png

 

I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
NikosBat
Excursionist
235 0 38

Thank DaisyVo, can I also make the Text a little more bold?

DaisyVo
Shopify Partner
2474 315 363

@NikosBat 

 

Please add this code more 

 

span.badge.price__badge-sale {
    color: red !important;
font-weight: 900 !important;
}

 

I hope this helps

 

Best,

 

Daisy

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
NikosBat
Excursionist
235 0 38

Thank you DaisyVo, that helped me