Changing text color of the metafield on Prestige theme

Hi,

I have a metafield text on my product page and I’d like to change the custom text color to red (#CB2B2B).

Highlighted text is the one I’d like to change.

Thank you in advance.

1 Like

Hi @ju0

Would you mind to share your Store URL website? with password if its protected. Thanks!

Website: www.luxe-t.com

Thank you!

1 Like

Thank you for the information.

Try this.

  • 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:
.product-info__block-item p {
    color: #CB2B2B;
}
  • And Save.
  • Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like

Hi @ju0 ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

  1. Go to Online Store → Theme → Edit code.

  2. Open your assets/theme.css file.

  3. Add the code at the end of the file:

.product-info__block-item>.prose {
    color: red;
}

Best regards,

Anthony

1 Like

Hey @ju0

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @ju0

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the theme.css file:
.product-info__block-item .prose p em {color: #f00;}

Regards,

San

1 Like