Text spacing issue - craft theme

Hi all,

I’m having trouble with text description spacing. the spacing on my text descriptions is overlapping in some parts. (see Test item 4 for example) Is this a text box height issue or a padding issue? What changes can be made to fix this? I dont want to increase spacing between the text lines themselves.

store url-

password-
test99

Hi, @vvyan

  1. Go to online store → theme → edit code.

  2. open base.css and then find follow block.

.product__description.rte.quick-add-hidden p {
/* line-height: .45; */ remove this line.
margin: 0px !important;

}

Hello @vvyan

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-wrapper .product__description *{ line-height: 28px !important; }

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

thank you

1 Like