Dentalia has a dark and a light header options. You can change the header type on a page edit screen. The colors can then be set in Theme Options:
But this allows you for only two color options.
To add a third color, I think the easiest way to change the header color is with CSS. Each page has its own id, which can be used for setting the color. For example, Your home page id is 24618.
Unfortunately this is not as easy. The logo is loaded through html ( not CSS ). It can't be replaced with CSS.
The theme supports dark and light logo. If there are max two logos altogether on the site, then you can use this to your benefit, but if there are more, then it gets complicated. You would need to write a custum orion_get_logo() function. This requires moderate knowledge of php and using a child theme. The original orion_get_logo() function is located in dentalia/framework/helpers.php file. But if you create a function with the same name in your child theme, then your function will load instead of the dentalia one.
Hi,
I love theme and thanks for creating.
I'm trying to change on few pages header color, is this possible?
Example: 3 pages with 3 different header colors.
I found only "Header overlay" but doesn't helps me.
Thanks
Hi,
Dentalia has a dark and a light header options. You can change the header type on a page edit screen. The colors can then be set in Theme Options:
But this allows you for only two color options.
To add a third color, I think the easiest way to change the header color is with CSS.
Each page has its own id, which can be used for setting the color. For example, Your home page id is 24618.
You can change the color like this:
if there are multiple pages, where you want to set the same color, you can write the css like this.
The CSS code goes in Theme Options -> Custom CSS.
You will also need to add a transparent png logo (instead of logo with solid background), for this to work nicely.
I hope this helps,
Andrej
OrionThemes
Wow, Thank you very much!
What a nice and easy for custom wordpress theme. I was able to change many colors in one page, using this page-id:
P.S. Yes, will change the logo to be transparent.
Thanks again
I was wondering...
is it possible to change and the logo, using this kind of
As far I can see, the img src, doesn't have class tag and can't replace it like:
Any ideas?
Thank you
Unfortunately this is not as easy. The logo is loaded through html ( not CSS ). It can't be replaced with CSS.
The theme supports dark and light logo. If there are max two logos altogether on the site, then you can use this to your benefit, but if there are more, then it gets complicated. You would need to write a custum orion_get_logo() function. This requires moderate knowledge of php and using a child theme. The original orion_get_logo() function is located in dentalia/framework/helpers.php file. But if you create a function with the same name in your child theme, then your function will load instead of the dentalia one.
Kind regards,
Andrej
OrionThemes
I understand, thank you for the answer. I think for now I'm okay with two logos.
Thanks