View Single Post
Old 07-28-2013, 08:27 AM   #7
DTM
Intentionally Left Blank
DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.DTM ought to be getting tired of karma fortunes by now.
 
DTM's Avatar
 
Posts: 172
Karma: 300106
Join Date: Feb 2006
Location: Royal Oak, MI, USA
Device: Nook STR
Perkin is suggesting that you check each "bad" chapter for something like this:

<link href="../Styles/styles.css" rel="stylesheet" type="text/css"/>

in its <head>. If that's missing or incorrect, the chapter is ignoring the styles and it would explain why the headers look different. If the statement is there, you can check to see if it's correct by comparing to a "good" file. And, by the way, I've found that some readers are case-sensitive, so

<link href="../styles/styles.css" rel="stylesheet" type="text/css"/>
is not the same as:
<link href="../Styles/styles.css" rel="stylesheet" type="text/css"/>

Toxaris is suggesting you look within your style sheet for the entries that look like:

h1
{
formatting stuff here
}

to make sure they all appear to be in order.

I'll throw in a suggestion of my own: You'll then want to compare how h1, h2, etc. are used in the "bad" chapters as compared to the "good" ones.
DTM is offline   Reply With Quote