Is it possible to have different footer / header background colors per page. I’ve got the different logo’s per page working but matching colors would be great ;)
Hi Roderick!
Yes, it’s possible. Send us a link to the exact page and we’ll give you some CSS to use.
Cheers!
Elliott
Hi,
that would be awesome, I have several pages like: http://heersend.nl/reizen/ where I want the black to be in other colors so it should be green for example on http://heersend.nl/reizen/ and red on http://heersend.nl/revalidatie/
So the black bar with the page title and breadcrumb in it and the footer area. Would be great if I could style them per page.
Kind regards,
roderick
Hey!
You can use this.
.page-id-11 .title_container, .page-id-11 #footer {
background: green !important;
}
And switch “11” with the ID of the page you want to target.
Or add a codeblock element to your page content and add this inside.
<style type = "text/css">
.title_container, #footer {
background: green !important;
}
</style>
If you don’t want to mess with IDs.
Cheers!
Elliott
thanks, and for the main title area? is that also possible? and the rulers under the menu items?