View Single Post
Old 01-25-2019, 09:32 AM   #3
coneheadZombie
Member
coneheadZombie began at the beginning.
 
Posts: 10
Karma: 10
Join Date: Jan 2019
Device: Moon+Reader (Android)
Thanks for the reply.

Well , both the Chapter and Part are in the same .xhtml file.
The only css im using is span(drop cap) no page-break is being applied.
Im using .ncx toc.

This is what the Chapter2.xhtml file looks like right now :
Spoiler:
Code:
<body>
<div id="header">

  <h3>
  <span class="dc">O</span>VERLORD 
  <span class="dc">V</span>OLUME 
  <span class="dc">2</span>
  </h3>
  <hr id="bottomline"/>
  
  <h3>CHAPTER 2</h3>
  <h3>JOURNEY</h3>
</div>

<div>

<h4 id="toc_1">Part 1</h4>

some <p>'s
</div
</body>


and the Toc.ncx is :
Spoiler:
Code:
 <navPoint id="num_10" playOrder="10">
      <navLabel>
        <text>CHAPTER 2 - Journey</text>
      </navLabel>
      <content src="Chapter2.xhtml"/>
      <navPoint id="num_11" playOrder="11">
        <navLabel>
          <text>Part 1</text>
        </navLabel>
        <content src="Chapter2.xhtml#toc_2"/>
      </navPoint>
    </navPoint>


So the problem might because of the dropcap span ?
but is there any way i can use css with these ?
coneheadZombie is offline   Reply With Quote