diff --git a/theme/chameleon/README.html b/theme/chameleon/README.html index 4a723fcebc0..8061f0bb144 100644 --- a/theme/chameleon/README.html +++ b/theme/chameleon/README.html @@ -1,3 +1,32 @@ -
A Moodle Theme from Urs Hunkler, unodo and Andrew Walker, Alton College.
\ No newline at end of file ++ You must not write hooks as comma separated lists of elements like +
+td#middle-column div.bt,
+div#middle-column div.bt {
+ ...
+}
+
+ in Chameleon themes because the Chameleon engine can't handle these comma lists.
+ Please write two seperate statements instead.
+
+td#middle-column div.bt {
+ ...
+}
+div#middle-column div.bt {
+ ...
+}
+
+
+
++ A Moodle Theme from Urs Hunkler, unodo + and Andrew Walker, Alton College. +
\ No newline at end of file