PopPage Background Color (Broadcast theme)

Hi, I’m trying to change the background of one of my popup (Link to size page), but I’m not able to I’d like to make it totally black and not transparent as it seems to be thank you.

1 Like

Hi @PercyC

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
.product-modal__content {
    background: white;
}
.product-modal__outer * {
    color: black !important;
}
.product-modal__outer table tr > th, .product-modal__outer table tr > td {
    border: 1px solid #000;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Thank you so much for your quick reply. Like this ?

Hi @PercyC ,

May I ask for your store URL so that I can assist you further?

Look forward to your response.

Best,

Daisy

Hello @PercyC
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.

.product-modal__content {
background-color: gray !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

https://acr1xe-3j.myshopify.com/

Yes, but currently in your theme.css now I see some liquid code and javascripy which is not below to that file.

Please, paste it on the other file.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “theme. Liquid” file. Find the tag and paste the code below before the tag.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Thank you so much for your help finally it worked ! Since we’re on the subject, I’d like to ask you if you could also help me reduce the size of the home page collection. It would be really appreciated “mobile version only”.