Changing Banner color without altering primary color | XM Community
Skip to main content
Does anyone know if this can be done with CSS? I want to change my banner color to white without changing my primary color. Normally changing the primary color also changes the banner color. This is the code I am trying currently but it is not working.



Skin .skininner { color:#ffffff }
Hello @uhrxx005 you have to follow this steps to do that, open a preview of the survey, after that go to the banner and right click on the banner and select "inspect" (the last option), or ctrl+shift+i. It will appear a window on the right side of your screen with the code, change the color of the .Skin #progress bar and copy those lines of the code and paste it on the look and feel- style- css. You have to paste something like this with the color you want. If this works remember to accept my answer to your question! Have a nice day

.Skin #ProgressBar tr td:first-child {

color: #fff;

position: absolute;

left: 0;

line-height: 18px;

border-left: none;

width: 100%;

padding-top: 4px;

padding-left: 4px;

}

Leave a Reply