View Single Post
Old 04-18-2013, 08:56 AM   #3
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,643
Karma: 204624552
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
The link and vlink stuff has nothing to do with with your blank page problems. Get rid if the unnecessary attributes from the body tag and the error will go away.

The link taking you to a blank page is unrelated to the attribute errors (and really unrelated to Sigil). Mobi is very picky about where the anchor you're linking to is placed. The best practice is to not link to anchors (or ids) at all. Make your toc an entirely separate (x)html page and link directly to it (no url fragments). Linking to the ids of headings will get you into trouble with mobi every time.

If you must link to somewhere in the middle of an html page, link to an anchor tag
Code:
<a id='xx' />
placed before any block elements (especially any styled block elements).
DiapDealer is online now   Reply With Quote