How can I change the footer promotions background color to DDD2E9?

I would love to change the background color of our Footer Promotions section that appears on every page to set it off from the rest of the pages. It’s currently white but I’d love for it to be DDD2E9. Can anyone help?

https://oregonswildharvest.com/

Thanks!

Hi @jen_x .

This is PageFly - Advanced Page Builder.

You can go to Online store => themes => actions => edit code and add this code on file theme.css

.site-footer{
  background-color: #DDD2E9;
}

Hope this helps.

Best Regards;

Pagefly

1 Like

Thanks! It’s not the footer I need to change but the “footer promotions” area, which is just above the footer. I was able to just change the wording to:

.footer-promotions{
background-color: #DDD2E9;
}

and that worked! But… now the margins are looking off around it. How do I get the DDD2E9 color to go all the way to the left and right edges, more margin on the top, and NO white space between it and the darker footer?