Hi. I want to make my website have the option to change the background color and H1 …(like you make in UI THEME) by pressing a button in the menu and save the option in cookie. I found this code, but I can not get it to work.
The color of the PRO theme is kept transparent.
HTML
<label for="lightswitch">Light Switch</label>
<input type="checkbox" id="lightswitch" />
CSS
/*Switched Off*/
.input#lightswitch:checked + .body {
background: #222 !important;
}
.input#lightswitch:checked + .body h2 {
color: #ddca7e !important;
}
.input#lightswitch:checked + .body h2:after {
content: " Off"
}
.input#lightswitch:checked + .body p {
color: #aaa !important;
}
Please help with this.
Thanks for the best theme for WP.