Quote:
Originally Posted by JimmXinu
My first suspicion would be your chapter_start setting includes <br> tags and that's where it's coming from.
From CustomOutput wiki page:
|
Ah...thank you. I did at one point add <br/> to chapter_start but failed to make the connection to the issue
My intention was to add a single line break between the chapter title and the story/body text. Toward the end of the chapter_start setting, I did have it set up as:
Code:
<body class="fff_chapter">
<h3 class="fff_chapter_title">${origchapter}</h3>
<br/>
Should I change it to this instead?
Code:
<body class="fff_chapter">
<h3 class="fff_chapter_title">${origchapter}</h3>
<br class="skip_on_ffdl_update"></br>
Also, any recommendations on how to add a line break between Author Notes at the beginning of chapters and the story/body text?