php to find main menu
Permalink
Hi all,
I'd like to change the style of the body according to the menu i'm in. So for example when i'm in one of the pages of the first main menu there's a blue background image and when i'm in the second main menu (or its children) i'll have another background image.
How should i procede..
I'd like to change the style of the body according to the menu i'm in. So for example when i'm in one of the pages of the first main menu there's a blue background image and when i'm in the second main menu (or its children) i'll have another background image.
How should i procede..
You could use the name of the section you're in as a class name, then use css to style those classes appropriately. For example, you could change the <body> tag in your theme templates to this:
thanks, it works