How to change the background color of a "choose options" popup?

Hello,

I would like to change the background color of the popup window that comes up when user clicks “Choose options” button on the home page. At the moment it is white and I would like it to be #ede9e4

2 Likes

Hey @enikoszabo please your store url

Hi @enikoszabo

Would you mind to share your store URL? Thanks!

www.lumigatti.com thank you!

www.lumigatti.com thank you!

1 Like

Thanks for the info, check 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 “quick-add.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:

.quick-add-modal__content, .product__media.media.media--transparent {
    background: #ede9e4;
}

And Save.

Result:

Q: IS this only on the desktop or include the mobile. The code is for both deskto and mobile.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

  1. Log in to your Shopify admin dashboard and navigate to Online Store > Themes > Actions > Edit Code
  2. Look for your theme’s CSS file. It’s usually named “base.css” or something similar and is located in the Assets folder
  3. Add this at the end of the CSS file
#QuickAddInfo-8640939000146 {
    background-color: #ede9e4 !important;
}

Save it and you should be able to see your popup with the color you want
Hope this helps

This is Noah from PageFly - Shopify Page Builder App

Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag


Hope my solution will help you resolve the issue.

Best regards,

Noah | PageFly

thank you so much!