Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Closed Thread
 
Thread Tools Search this Thread
Old 12-13-2022, 05:44 AM   #1
MchneGunCarrie
Junior Member
MchneGunCarrie began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Nov 2022
Device: none
Unhappy Chapter title pages not showing in Kindle

Good day,
Hope Im posting in the correct place. Im working on a book in Sigil and I want separator pages before each chapter (i.e "Chapter 1: BlahBlahBlah).

It shows on Kindle Reader App on my phone and on Kindle reader app for PC but not on my kindle. (Maybe its because I have a Kindle Keyboard???)

This is my code:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" lang="en" xml:lang="en">
<head>
<title>Introduction: We Are Winning </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="../style.css"/>
<link rel="stylesheet" type="text/css" href="../page_style.css"/>
<style>.center {padding: 70px 0; text-align: center;}</style>
</head>
<body>
<div class="center">
<h2>Introdction</h2>
<img width="60" height="60" src="../Images/hand.png"/>
<h1>We Are Winning</h1>
</div>
</body>
</html>

Thank you kindly in advance
MchneGunCarrie is offline  
Old 12-13-2022, 06:04 AM   #2
Quoth
the rook, bossing Never.
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 11,158
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
I think in mobi format each chapter needs to be a new file.
In general on most ereaders if you want a new page for any reason, a new file will do it.
Quoth is offline  
Advert
Old 12-13-2022, 06:06 AM   #3
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,803
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Your <img tag (line) is naked.
It need to be in a block level tag <div> works nice because defaults are simple without additional mumble

Code:
 <div class="heading-image-size-container" style="width: 16.6%">

            <img src="images/arilauralucy_logo_jestersm1.jpg" alt="" class="heading-image-image"/>

          </div>
theducks is offline  
Old 12-13-2022, 06:08 AM   #4
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,803
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by Quoth View Post
I think in mobi format each chapter needs to be a new file.
In general on most ereaders if you want a new page for any reason, a new file will do it.
Missed that.
Kindle Keyboard is Mobi only (limited) and not AZW3
theducks is offline  
Old 12-13-2022, 06:11 AM   #5
MchneGunCarrie
Junior Member
MchneGunCarrie began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Nov 2022
Device: none
Quote:
Originally Posted by Quoth View Post
I think in mobi format each chapter needs to be a new file.
In general on most ereaders if you want a new page for any reason, a new file will do it.
It is in its own file.
MchneGunCarrie is offline  
Advert
Old 12-13-2022, 06:13 AM   #6
MchneGunCarrie
Junior Member
MchneGunCarrie began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Nov 2022
Device: none
Quote:
Originally Posted by theducks View Post
Your <img tag (line) is naked.
It need to be in a block level tag <div> works nice because defaults are simple without additional mumble

Code:
 <div class="heading-image-size-container" style="width: 16.6%">

            <img src="images/arilauralucy_logo_jestersm1.jpg" alt="" class="heading-image-image"/>

          </div>
I will try this. Thank you. Havent had trouble when my chapter dividers were images but I realised I might want to change title names and dont want to have to create a new image all the time. Thank you Kindly!
MchneGunCarrie is offline  
Old 12-13-2022, 10:35 AM   #7
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,644
Karma: 5433388
Join Date: Nov 2009
Device: many
There is nothing Sigil specific about this thread. It would be better located in the epub or kindle forums here. In the future for similar issues please use those forums so more people see it and benefit from any response.

Thank you.
KevinH is offline  
Old 12-13-2022, 10:39 AM   #8
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: 27,549
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by KevinH View Post
There is nothing Sigil specific about this thread. It would be better located in the epub or kindle forums here. In the future for similar issues please use those forums so more people see it and benefit from any response.
I agree. But in the OP's defense, the post was moved here by a mod from another part of the forum.
DiapDealer is offline  
Old 12-13-2022, 11:00 AM   #9
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,803
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Mobi also does not support stylesheets (or a lot of things EPUB or AZW3 can do).
theducks is offline  
Old 12-13-2022, 11:01 AM   #10
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,644
Karma: 5433388
Join Date: Nov 2009
Device: many
Sorry, I did not know a moderator moved it here.
KevinH is offline  
Old 12-13-2022, 11:25 AM   #11
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: 27,549
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by KevinH View Post
Sorry, I did not know a moderator moved it here.
No biggie. I only knew because I saw the initial report about it being posted in the wrong place.
DiapDealer is offline  
Old 12-13-2022, 12:10 PM   #12
Quoth
the rook, bossing Never.
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 11,158
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
Must be hard modding. Sometimes is it spam or not? Where should it go?

I did have problems with lack of page breaks on Mobi sending docx to Amazon KDP. It was solved purely by switching on their advice to epub upload, which always does have file per new pagebreak. Though oddly it had worked for a year.
Quoth is offline  
Old 12-14-2022, 07:18 AM   #13
MchneGunCarrie
Junior Member
MchneGunCarrie began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Nov 2022
Device: none
Quote:
Originally Posted by KevinH View Post
There is nothing Sigil specific about this thread. It would be better located in the epub or kindle forums here. In the future for similar issues please use those forums so more people see it and benefit from any response.

Thank you.
Sorry about that.
MchneGunCarrie is offline  
Old 12-14-2022, 07:44 AM   #14
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by theducks View Post
Missed that.
Kindle Keyboard is Mobi only (limited) and not AZW3
The KK (aka K3) does support KF8.
JSWolf is offline  
Old 12-14-2022, 03:21 PM   #15
Quoth
the rook, bossing Never.
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 11,158
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
There are earlier keyboard models than the KK3. The KK3 wasn't called a Kindle Keyboard at launch
The 2nd Keyboard model


The KK3 came out between DX and DXG. So in one sense the 4th model with a keyboard.

The DXG is the last model without an upgrade to KF8/azw3.

The KK3 with last FW does indeed to KF8/azw3 well, but on original FW it didn't support it. I don't know which update added the azw3/KF8 and extra fonts. Allegedly the later DXG model is basically a DX with a newer panel and not enough RAM for the KF8/azw format rendering.

Last edited by Quoth; 12-14-2022 at 03:35 PM.
Quoth is offline  
Closed Thread


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Forma Turn one page, Pages in chapter increases 1, Pages in book increases 2 codychan Kobo Reader 15 03-14-2021 08:51 PM
Amazon Kindle - show pages left in chapter? koboy Amazon Kindle 35 07-24-2017 03:55 PM
Title page showing filename and not true book title... hikerguy Editor 3 03-30-2015 05:37 PM
(MOBI) Proper way to split pages after a chapter / kindle touch VeLiKi Conversion 5 04-27-2012 04:40 PM
Title/Author showing up in TOC, kindle bookmarks issue mmorgan Calibre 1 05-17-2011 03:23 PM


All times are GMT -4. The time now is 02:48 AM.


MobileRead.com is a privately owned, operated and funded community.