Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Recipes

Notices

Reply
 
Thread Tools Search this Thread
Old 06-14-2024, 04:52 PM   #1
SydneyJB
Junior Member
SydneyJB began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Jun 2024
Device: none
Creating a line under chapter number

Hi, I need help. I am still learning Calibre. To create an elegant, small line between my chapter number and my character’s name at the chapter opener, is it better to use a png of a small line, or is it ok to use a Bergamot Ornament typeface?

Selecting the tilde ~ gives a nice little line in Bergamot Ornament. But I’m worried that all epub readers will strip out the Bergamot Ornament typeface. I see these lines with tapered ends in other epubs. Are they using images? Thanks!!
SydneyJB is offline   Reply With Quote
Old 06-14-2024, 05:08 PM   #2
Karellen
Wizard
Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.Karellen ought to be getting tired of karma fortunes by now.
 
Karellen's Avatar
 
Posts: 1,197
Karma: 4949904
Join Date: Sep 2021
Location: Australia
Device: Kobo Libra 2
There are various methods, but it depends on...

1. What type of line you are wanting. Just a simple straight line, or some type of ornamental Fleuron?
2. Which ereader will you be reading it on?

Maybe post a screenshot of what you want it to look like.
Karellen is online now   Reply With Quote
Old 06-14-2024, 08:35 PM   #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: 30,065
Karma: 57259778
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Or simple, basic CSS ways

Keywords:
<hr />
text-decoration: underline

(see the 'box model' theory for understanding)
border-bottom
padding-bottom
theducks is offline   Reply With Quote
Old 06-16-2024, 04:19 AM   #4
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,837
Karma: 87663463
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
And css can have width: 30%; like on an <hr class="small" />
Quoth is offline   Reply With Quote
Old 06-16-2024, 09:56 AM   #5
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: 30,065
Karma: 57259778
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
And css can have width: 30%; like on an <hr class="small" />
width was unreliable on older (that is all I have) versions of RMSDK

if you used Width, it did not (self) center
So I always forced it over (use needed math)
margin-left: 35%;
width:30%
theducks is offline   Reply With Quote
Old 06-16-2024, 11:21 AM   #6
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,837
Karma: 87663463
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
Quote:
Originally Posted by theducks View Post
width was unreliable on older (that is all I have) versions of RMSDK

if you used Width, it did not (self) center
So I always forced it over (use needed math)
margin-left: 35%;
width:30%
Works if the element is in an outer container with desired settings
Then no margin-left is needed, but yes the math approach is reliable.
Of course maybe the line isn't wanted to be centred, but margin-left: 1.5em;.
Quoth is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating headers from parent chapter and not section shlomikalfa Conversion 1 06-05-2021 05:57 AM
Number of pages in a chapter Ashjuk Sigil 13 12-31-2020 11:59 AM
Creating Chapter Divisions with Plain Text Files KitsuneStylinson Conversion 6 09-02-2012 09:57 AM
Creating an empty line - which way is better? NASCARaddicted ePub 4 10-31-2011 05:24 AM
Ebook chapter titles: with or without chapter number? amoroso Writers' Corner 16 06-14-2011 06:35 AM


All times are GMT -4. The time now is 01:14 AM.


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