How to change the white colour to the background colour?

Topic summary

A user is seeking help to change the white background color around text boxes (description, price, etc.) on their product page.

Proposed Solution:

  • Navigate to Online Store → Theme → Edit code
  • Open the theme.liquid file
  • Insert custom CSS code before the closing </body> tag
  • The CSS targets .product__section .product__section-content with specific background and border-color properties

Status: The response appears incomplete or corrupted (text contains reversed/garbled characters), making it difficult to verify the exact color values and complete implementation steps. The discussion remains open pending clarification or a complete solution.

Summarized with AI on November 5. AI used: claude-sonnet-4-5-20250929.

https://aromaticaparfums.com/products/aromatica-rouge?_pos=1&_sid=c9f074ec5&_ss=r

the white colour around the text box (description, price, etc) how do I change it?

Hello @aromaticaparfum

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__section .product__section-content { background: #fef9f1 !important; border-color: #fef9f1 !important; }

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

1 Like