Quite a lot of coding goes into creating different colour schemes for different pages, using Page-ID selectors. This gets confusing as more pages are added. E.g.
Code:
.page-id-30 div.widget-title h3, .page-id-32 div.widget-title h3, .page-id-201 div.widget-title h3, .page-id-252 div.widget-title h3, .page-id-257 div.widget-title h3 { border-top-color: #A29D8F; }
Code:
.yellow div.widget-title h3 { border-top-color: yellow; } .blue div.widget-title h3 { border-top-color: blue; }
In the wordpress page editor is an options box [Page Attributes > Parent & Template], where the multicolumn option is. Ideally I'd have something similar, which allowed me to mark each page/post as either a Yellow or Blue page, which then added a suitable selector to the html.
Has anyone found a plug-in which might do this (or could be tricked into doing this)?