Index: jstools/collapsiblock/README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/jstools/collapsiblock/README.txt,v
retrieving revision 1.3
diff -u -u -p -r1.3 README.txt
--- jstools/collapsiblock/README.txt	6 Jan 2007 07:15:34 -0000	1.3
+++ jstools/collapsiblock/README.txt	17 Jan 2008 01:07:35 -0000
@@ -7,4 +7,31 @@ Makes blocks collapsible.
 Requirements
 ------------------------------------------------------------------------------
 This module is written for Drupal 5.0 and requires the jstools.module to be
-enabled.
\ No newline at end of file
+enabled.
+
+
+Configuration
+------------------------------------------------------------------------------
+To get collapsiblock working on custom themes, in cases where the block titles 
+are NOT h2, you need to add a setting that defines an appropriate css selector 
+as a 'titleSelector' parameter for jstools.
+
+EG, in a theme that has a block.tpl.php that uses h3, not h2 as the title:
+//-------------------------------------
+/**
+ * Setting for collapsiblock, specific to this theme
+ */
+function collapsiblock_theme_data() {
+  return array(
+    'titleSelector' => 'h3',
+  );
+} 
+//-------------------------------------
+
+
+This function can be either in a file named 
+  jstools/collapsiblock/theme/yourtheme.php 
+or inside 
+  yourtheme/template.php
+
+See the jstools/collapsiblock/theme folder for examples.
\ No newline at end of file
