Too much space in between collapsible product description

Hello,

I got this collapsible row for my product description but there should not be a line without text above the description itself

The enter does not show in the description at Products

{%- when 'description' -%}
{%- if product.description != blank -%}

{%- endif -%}

This code is used for the collapsible row in main-products.liquid

Shop URL: SlimCharge – TrendBlend

Hello @TrendBlend

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 on theme.liquid

.product .product__info-container .product__description{ margin: 0 !important; }

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

Hi @TrendBlend

Check this one.

rom you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.product__description.rte.quick-add-hidden {
    margin: 0;
}

And save.

Result:

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