In the Theme under the Layout (AdminLTE)
there is a Navbar class where I can select only the particular color which are already in the list.how can I change it to my custom color #6495ED
You may simply put the following css code into HTM → Styles → User :
.navbar {
background-color: #6495ED;
}
after that, re-generate your {projectname}.css file, and then make sure you have already done a hard refresh/reload in order to use the latest version of the .css file.
thanksMy whole project background color is white and I want to change it also.
I use the code in css
body,.ew-layout {
background-color: #6495ED;
}
it change only the footer portion where I made is display:noneHow can I change the background for all my project except table
You may try:
.content, .content-header {
background-color: #6495ED;
}