I want to change bg-orange text colour from black to white. I have entered the following in User CSS, regenerated and reloaded the browser.bg-orange, .bg-orange>a {
color: #fff;
}but it is strikeout in the console, and defaults to the following in file adminlte3\css\adminlte.css.bg-orange, .bg-orange>a {
color: #000!important;
}I can’t see any way to change this in theme values. Is there a way to change this please?
Try:
.bg-orange, .bg-orange>a {
color: #fff !important;
}
Thank you, just the job. It’s been a long, long time since I ‘learned’ CSS. Probably time to revisit.