How can I change the background color of my contact us page to #b9b7b7?

Topic summary

A user seeks to change the background color of their contact page to #b9b7b7 on a Dawn theme Shopify store.

Solution Provided:

  • Navigate to Shopify Admin → Online Store → Themes → Actions → Edit Code
  • Locate the base.css file under Assets
  • Add custom CSS code at the bottom of the file targeting the contact page template

Technical Details:

  • The CSS targets a specific Shopify section ID for the contact template
  • Sets the background color property to the requested hex value (#b9b7b7)

Status: A complete solution has been offered, though no confirmation of implementation or success from the original poster yet.

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

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the Bottom of the file:
section#shopify-section-template--20844594954530__abbdd4e1-34c8-4973-a66c-794efa817bfb {
background: #b9b7b7;
}