Page 1 of 1

change adminlte css

Posted: Mon Jan 30, 2023 4:58 pm
by twuc

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?


Re: change adminlte css

Posted: Mon Jan 30, 2023 8:19 pm
by mobhar

Try:

.bg-orange, .bg-orange>a {
  color: #fff !important;
}

Re: change adminlte css

Posted: Mon Jan 30, 2023 11:04 pm
by twuc

Thank you, just the job. It's been a long, long time since I 'learned' CSS. Probably time to revisit.