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
-
Go to Online Store β Theme β Edit code.
-
Open your theme.liquid file
-
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!