Custom theme possible?

Hallo Community,

out-of-the-box I have four themes:

// chosose your graphic theme: 'classic', 'black', 'blue' or 'green'
$graphic_theme = 'blue';

My customer need a theme with the basic color of red.
It is possible to change the color (e.g. via CSS) to other custom colors?

Thank's!
Michael

DaDaBIK Enterprise 10.6
 

Hardus

Member
HI, one way is to edit: css/styles_screen_custom.css

Here is 3 examples of sections you need to modify, rest you need to look up in the original theme file you have on currently.

/* This is the left menu background */
.td_left_menu {
background-color: #000000;
}

/* This is the main menu top level */
.main-menu a {
color: white; /* This is the text color */
background-color: #ff0000;
}

/* This is the main menu sub-level */
.main-menu .sub-menu a {
color: white; /* This is the text color */
background: #ff0000;
}

Example of the Blue theme:

The Dark Blue color used is #2d4373, so best will be to find all mentioned sections of this color, copy them to your custom css and change the color values accordingly.

The sub-menu blue is: #3b5998

On chrome right-click on the section, inspect and you will find the section there.

Or you can just save the theme file you want to use as a template to your own name and then do your edits in there and change the theme name in the config file of Dadabik.

I think the custom css file will be easier.
 
Top