Published a year ago
Published a year ago
Julian
Updated 2 years ago
0
How can I adjust the foreground and background color of the verification box (default: blue background and white text/loader) animation?
Naldela Teleyal
Updated 2 years ago
0
With Pro you can edit them by yourself:
Julian
Updated 2 years ago
0
I did that, but the box that is loaded from the remote challenge.js is always with blue background and white foreground, or did I miss something?
Naldela Teleyal
Updated 2 years ago
0
Maybe you need to override the CSS. You can use !important on your color definition
Naldela Teleyal
Updated 2 years ago
0
For example:
1body { 2 background: #fff !important; 3}
Julian
Updated 2 years ago
0
Thanks! To switch to black / white I used the following, and it worked:
background-color: #fff !important;
}
#sl-loader {
--uib-color: #000 !important;
}
#sl-text {
color: #000 !important;
}```