change adminlte css

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
twuc
User
Posts: 72

change adminlte css

Post 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?


mobhar
User
Posts: 11660

Post by mobhar »

Try:

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

twuc
User
Posts: 72

Post by twuc »

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


Post Reply