There's a telepathy module for that.
Hiding text in IE7 with CSS
Negative indent. Hackish solution, but it gets the job done... most of the time. It fails spectacularly in IE7, however.
If you're ever looking to hide that special text from your evil seventh aunty thrice-removed (i.e. ie) try this handy trick
#selector {
color: transparent;
text-transform: capitalize;
}
Interesting tidbit. IE will ignore the transparent color UNLESS you apply a text-transform to it as well. That seems to be the cue that IE waits for before doing anything TOO crazy.






