Thank you for your suggestion. However, adding that to my code did nothing at all.
More research shows the following facts:
1. display: none; /* makes your object not display, and doesn't reserve any space for it so it is totally invisible
2. visibility: hidden /* makes your object not display, but, space is reserved for it on the page so it leaves an empty space
3. visibility: collapse /* makes your object not display, but doesn't reserve any space for it so it is totally collapsed
Problem: Version 1 hides it completely. Version 2 leaves unwanted space on the page. Version 3 is a nice idea that isn't supported by any browsers that I could find.
So how do we make a css div contentpane collapse at runtime? Surely someone has figured this out, or are we still using tables for our content panes? If we are, I could have saved alot of time and headache just going ahead and using tables. I'd have been done with this project a week ago.
Someone please give me some useful advice?
Thanks!
~Bee