Setting Button Color but not seeing a change

I’m having an issue with Wix code. I have a button inside of a group, which is shown across all pages. When I try to changes it’s color, nothing is happening. However, it works when I try to change a different button’s color.

I can’t find any difference between the buttons. And when I run the following code, it correctly shows the color before that functions is called as being white, then correctly shows it changing to “#7EEAFF”. Yet, it doesn’t actually change on the website.

console.log(“butSummary background Color before =”+ $w(“#butSummary”).style.backgroundColor);
$w(“#butSummary”).style.backgroundColor = “#7EEAFF”;
console.log(“butSummary background Color after =” + $w(“#butSummary”).style.backgroundColor);

Additionally, I added a seperate button in order to double check that it wasn’t something funny like it being switched back too quickly… but no, the color supposedly stays at “#7EEAFF”.

What am I missing? Wix bug? Thanks!

I found it… turns out the background color of the button was transparent and I missed it. Whoops! lol