Dawn theme | How to increase opacity in Product description?

Hi guys,

  1. I would like to increase opacity in Product description, the text looks a bit dim. I attempted to search resolution in some similar posts but they didn’t work.

  2. How to reduce the space between in Product description.

My url: https://189ee3-2.myshopify.com/products/dress

Thank you!

1 Like

Hi @collins276

Check this one.

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__description.rte.quick-add-hidden {
   color: black !important;
}
div.product__description.rte.quick-add-hidden > p:nth-child(3) {
   margin-bottom: 0px !important;
}
.rte>*:last-child {
   margin-top: 2px !important;
}

And Save.

result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

2 Likes

Hi @collins276 ,

Go to the online store → edit the code and find the file base.css

Go to line number 3557 or find the class .product__info-container

add css line

color: rgba(var(--color-foreground), 1);

or replace with

.product__info-container {
    margin-left: 30px;
    color: rgba(var(--color-foreground), 1);
}

Please refer to the below screenshot for reference.

Hope this will help…

1 Like

Thank you :grinning_face:

(2nd solution) I have know idea but it didn’t work on my end (that’s weird). So I tried this code instead and it’s ok.

div.product__description.rte.quick-add-hidden > p:not(:nth-child(1)){
  margin: 0;
  padding: 0;
}
1 Like