http://www.tammyhsieh.info/
How can I change different menu type color on different page? My main page (home) is black background with white menu but I want my project page with white background and black type for the menu.
-
Change menu color
-
Hi Tammy,
you can do this with Custom CSS.
Each page has a slug which means a unique name.
Your work page has a class called .slug-work.
You can address your navigation on that page by doing something like this:
. slug-work .primary a { color: red; }
Another page will have a different slug.
Then you can customize the CSS of each page separately.I hope I could help!
Marius