The 450+ pages are attached to a template but within those pages I need to apply the css type color change to groups. I couldn't figure out how to make nested templates for the groups so that's why I'm doing each page individually. I just wish I could skip the extra few clicks it takes to get the stylesheet attached (even keyboard shortcuts would help but I don't see any for attaching stylesheets). Sorry such an amateur!
well that is true that you can nest templates...
but if the structure doesn't change, and if it is just to make the groups display differently... you can use param templates for thta purpose...
it's easy to implement and use...
- first declare a param templates with a default value right on the HEAD (you can do a search and replace for that on the 500 pages)
<!-- TemplateParam name="group" type="text" value="" -->
- then search replace the body tag... as
<body class="@@(group)@@">
- select a bunch of files the ones that belong to the same group and change the param value to something different as...
<!-- TemplateParam name="group" type="text" value="groupone" -->
- repeat for every groups, keep the same rootname
- declare different rules in style sheet
body[class^=group]{ // affect all groups } .groupone { } .grouptwo { }
that's it... don't hesitate if that is not enought clear...