Reduce padding in product description in Refresh theme

Hi,

I can’t seem to figure out how to remove the top and bottom padding of the product description on the Refresh theme. Can anyone please provide assistance?

This is my URL by the way:

https://www.thearcadeboy.com/products/arcade-boy

Hello @Bravista

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 blockquote { display: none !important; }

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

Hi @Bravista

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.product__description p,

.product__info-wrapper .product__description {

margin: 0 !important;

}

blockquote {

display: none !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

1 Like

This worked perfectly, many thanks for the quick help!