View Single Post
Old 08-09-2012, 04:50 AM   #3
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,546
Karma: 19001583
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
The problem is not exactly with "older" devices, but with the fact the visibility property is not supported by the ePub 2.01 specification, so any device could not support it and still be ePub-compliant. On the other hand, mobi does not support CSS at all, new or old, and it has no equivalent for visibility as far as I know.

You could try to force the invisibility by using:

Code:
visibility: hidden;
color: white;
opacity: 0;
But opacity is a CSS3 property that's not in ePub 2.01 either, or in ePub 3, I believe. Using a white color for the text will only work if the background is white, something you can't guarantee unless you force it (and that's not nice). Unfortunately "transparent" can only be used with background color, not with text.
Jellby is offline   Reply With Quote