Easy way to do this is by using page suffix in template settings > features > Suffixes for pages.
Suppose your background image or color comes from css class called "body" and uses following css code for color
- Code: Select all
body {
color: #000000;
}
Suppose your home menu item id is 101 ( See end of menu item in menu view such as main menu items )
Suppose your second page menu item id is 200 ( See end of menu item in menu view such as main menu items )
If you add following in suffixes for pages
ItemID/Option:200
Suffix:white
Click on Add rule button.
You will see following added.
- Code: Select all
ItemID 200 - white
Now go to Advanced Settings Custom CSS code and add below css
- Code: Select all
.white { background:#ffff;}
Click save & close.
Now when you go to your second page background color will change from black to white.
See you around...