JSFX module - http://drupal.org/project/jsfx
Problem: The JSFX module provides collapsible blocks. But the block headers do not have mouse pointers and leaves the user unaware that the blocks are collapsed.
Solution: Added CSS code to the block.tpl.php file.
/**
* JSFX Adding pointers for IE
*/
.blockTop {
cursor: pointer;
}
.blockTopOpen {
cursor: pointer;
}
Secondary Problem: This worked well in most browsers but Opera exposed the code only in the header block.
Secondary Solution: Added a block-header.tpl.php file that did not have the code, as I did not want the header blocks to collapse anyway.