Change background color on the Account Settings section

Hi @Alteco,

I’d never noticed that you’re not able to change the infobar colour as an option in settings :thinking:

The below JavaScript seems to work ok :+1:

// Select the info bar element
var infoBar = document.querySelector("#knack-dist_1 > div.kn-info-bar");
// Check if the element is found
if (infoBar) {
  // Change the background color
  infoBar.style.backgroundColor = "#ff9e54";
}

Just update the backgroundColor to a hex code of your choosing.

1 Like