I want to you guys help me to change the color of the buttons and the text of my site

Topic summary

Request to change Shopify store UI colors: buttons to #df9b6d and text to #000000 on a pop-up and cart page. Screenshots were provided to illustrate the target elements.

Access/setup: Helpers asked for the store URL/password; the store was opened at https://trend4two.com/ for review.

Proposed approaches:

  • Edit theme.liquid and paste code before the closing tag (suggested by a page builder representative; no specific code snippet was shown).
  • Add CSS in the theme’s main stylesheet (base.css/style.css/theme.css) targeting specific selectors: radio button labels in a product form, the empty-state link in the CartDrawer, and the checkout button. Colors set to the requested values.

Result: After placing the CSS in base.css, the requester reported no visible changes and asked for further help. They later thanked the first helper.

Technical context: theme.liquid is the primary layout file in Shopify; CSS controls visual styles; CartDrawer is the slide-out cart panel.

Status: Ongoing and unresolved. Next steps likely require verifying correct selectors, file placement, and whether the theme or app overrides are preventing the styles from applying.

Summarized with AI on January 17. AI used: gpt-5.

Hi guys, i want some help to change some colors from the buttons and texts! The buttons i want to change to #df9b6d and the text to #000000

This is the pop-up

And this ones the cart

1 Like

Hi @PedroSoares1234 ,

Could you please share your store URL and password if it enabled, so that I can help you

Hi @PedroSoares1234

Its a password protected, would you mind to share your store password? Thanks!

I already opened my site, u can acess it from here: https://trend4two.com/

Thanks

1 Like

Hi @PedroSoares1234 ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid file
  3. Paste below code before :

Best regards,

Anthony

1 Like

Thank you for the informatin, try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
div#QuickAddInfo-8827206435089 .product-form__input input[type=radio]:checked+label {
    background: #df9b6d !important;
    color: #000000;
}
#CartDrawer > div.drawer__inner > div.drawer__inner-empty a {
     background: #df9b6d !important;
    color: #000000;
}
button#CartDrawer-Checkout {
     background: #df9b6d !important;
    color: #000000;
}

Hi! The code is not ruunning i was putting it on the base.css and it doesn´t change anything! Can you help me??

Thank you very much Anthony!