View Single Post
Old 08-23-2013, 03:54 AM   #34
weedfreak
Addict
weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.weedfreak can program the VCR without an owner's manual.
 
weedfreak's Avatar
 
Posts: 302
Karma: 185297
Join Date: Sep 2009
Location: Ankh Morpork
Device: calibre
I checked out the epub and in Sigil get this on opening
Quote:
Cannot perform HTML updates since the file is not well formed: content0048.xhtml

Cannot perform HTML updates since the file is not well formed: content0040.xhtml

Cannot perform HTML updates since the file is not well formed: content0041.xhtml

Cannot perform HTML updates since the file is not well formed: content0019.xhtml

Cannot perform HTML updates since the file is not well formed: content0039.xhtml

Cannot perform HTML updates since the file is not well formed: content0044.xhtml

Cannot perform HTML updates since the file is not well formed: content0025.xhtml

Cannot perform HTML updates since the file is not well formed: content0005.xhtml

Cannot perform HTML updates since the file is not well formed: content0043.xhtml

Cannot perform HTML updates since the file is not well formed: content0013.xhtml

Cannot perform HTML updates since the file is not well formed: content0012.xhtml

Cannot perform HTML updates since the file is not well formed: content0021.xhtml

Cannot perform HTML updates since the file is not well formed: w2e.xhtml

Cannot perform HTML updates since the file is not well formed: content0009.xhtml

Cannot perform HTML updates since the file is not well formed: content0002.xhtml

Cannot perform HTML updates since the file is not well formed: content0007.xhtml

Cannot perform HTML updates since the file is not well formed: content0023.xhtml

Cannot perform HTML updates since the file is not well formed: content0010.xhtml

Cannot perform HTML updates since the file is not well formed: content0001.xhtml

Cannot perform HTML updates since the file is not well formed: content0046.xhtml

Cannot perform HTML updates since the file is not well formed: content0011.xhtml

Cannot perform HTML updates since the file is not well formed: content0014.xhtml

Cannot perform HTML updates since the file is not well formed: content0031.xhtml

Cannot perform HTML updates since the file is not well formed: content0029.xhtml

Cannot perform HTML updates since the file is not well formed: content0008.xhtml

Cannot perform HTML updates since the file is not well formed: content0042.xhtml

Cannot perform HTML updates since the file is not well formed: content0032.xhtml

Cannot perform HTML updates since the file is not well formed: content0027.xhtml

Cannot perform HTML updates since the file is not well formed: content0026.xhtml

Cannot perform HTML updates since the file is not well formed: content0022.xhtml

Cannot perform HTML updates since the file is not well formed: content0034.xhtml

Cannot perform HTML updates since the file is not well formed: content0033.xhtml

Cannot perform HTML updates since the file is not well formed: content0018.xhtml

Cannot perform HTML updates since the file is not well formed: content0016.xhtml

Cannot perform HTML updates since the file is not well formed: content0004.xhtml

Cannot perform HTML updates since the file is not well formed: content0006.xhtml

Cannot perform HTML updates since the file is not well formed: content0038.xhtml

Cannot perform HTML updates since the file is not well formed: content0003.xhtml

Cannot perform HTML updates since the file is not well formed: content0028.xhtml

Cannot perform HTML updates since the file is not well formed: content0035.xhtml

Cannot perform HTML updates since the file is not well formed: content0020.xhtml

Cannot perform HTML updates since the file is not well formed: content0017.xhtml

Cannot perform HTML updates since the file is not well formed: content0037.xhtml

Cannot perform HTML updates since the file is not well formed: content0045.xhtml

Cannot perform HTML updates since the file is not well formed: content0047.xhtml

Cannot perform HTML updates since the file is not well formed: content0030.xhtml

Cannot perform HTML updates since the file is not well formed: content0036.xhtml

Cannot perform HTML updates since the file is not well formed: content0015.xhtml

Cannot perform HTML updates since the file is not well formed: content0024.xhtml
Trying to switch to book view gives ths error
Code:
The operation you requested cannot be performed because content0003.xhtml is not a well-formed XML document.
An error was found at or above line 3: unsupported protocol in URL.
Changing lines 2 and 3 on every page to
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
solves that problem.

Why do you have span class bold inside every H1 tag? Is it not easier to have the bold attribute set in the H1 style in the css then you do not need to have it in 48 chapter headings, the same with inserting a blank line after each H1, the css has under H1 margin bottom set to 2 em if you need three lines then change the margin bottom to 3 em. By adding the <p>&nbsp;</p> line between the H1 and the first line of text you negate the first line indent setting the same thing happens where you use the <p>&nbsp;</p> as a section break, you lose the first line indent setting of the next line. You need to place <div> tags around the <p>&nbsp;</p>. Apart from H1 you do not appear to be using any styles, why not use H1 for titles, H3 for chapter headings, why not do something interesting with chapter beginings like drop caps anything is better than just making the first two words bold.

Hope this helps you.
weedfreak is offline   Reply With Quote