How to reduce Rich Text width in Shopify Debutify Theme

How to reduce Rich Text width in Shopify Debutify Theme by Design Dot Store

1. Go to your Shopify Admin Dashboard >  Edit Code.

2. Open the theme.css file under the assets folder and paste it at the end of the code file.

.rte.sm\:text-lg {
  padding-right: 120px;
  padding-left: 120px;
}
@media only screen and (max-width: 768px) {
  .rte.sm\:text-lg {
    padding-right: 20px;
    padding-left: 20px;
  }
}

3. After pasting the code, save the file to reduce the width of Rich Text in the Shopify Debutify theme.
4. Refresh your product page to see the changes.

Video Guide for Rich Text Width Reduce