Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 06-20-2017, 07:56 AM   #1
indieauthor83
Enthusiast
indieauthor83 began at the beginning.
 
Posts: 30
Karma: 10
Join Date: Feb 2015
Location: UK
Device: kindle fire hd
Help with Chapter seperators (lines underneath chapter headings)

Hi,

I can't figure out how to create bold lines beneath chapter headings.

I've spotted many kindlebooks that make use of these, but I have no idea how they do it!

I am able to use a simple underscore and run it along the page, but even when this is (h1 size) it doesn't look that bold.

I've spotted books that use fancy lines too. If anyone can help me with this, it would be much appreciated. Thanks!

Sarah.
indieauthor83 is offline   Reply With Quote
Old 06-20-2017, 08:17 AM   #2
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,957
Karma: 128903250
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
A lot of times, those fancy lines are just graphic images.
JSWolf is offline   Reply With Quote
Old 06-20-2017, 08:33 AM   #3
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,548
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Horizontal rule (an hr tag) is probably what you're looking for (if you don't want to use a graphic). You can size it and style it how you like.
DiapDealer is offline   Reply With Quote
Old 06-20-2017, 08:53 AM   #4
GrannyGrump
Obsessively Dedicated...
GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.
 
GrannyGrump's Avatar
 
Posts: 3,200
Karma: 34977896
Join Date: May 2011
Location: JAPAN (US expatriate)
Device: Sony PRS-T2, ADE on PC
Try using <hr /> (horizontal rule) for simple straight lines.

You can style it in the CSS stylesheet to be any thickness you like, or a double line, etc, etc.

In the stylesheet, something like:
Code:
hr 
{border-top: 1pt solid; margin-top: .5em; margin-bottom: .5em}
or
Code:
hr
{border-top: 4pt double; margin-top: .5em; margin-bottom: .5em}
}

The greater the number of "points" (1pt, 4pt, 10pt), the thicker the line.

Then in the HTML, you could put something like this:

Code:
<h2>CHAPTER ONE</h2>
<hr />
W3schools have very helpful tutorials to learn about html and css.
for instance, a quick "try it yourself" tutorial on horizontal rules can be found here: https://www.w3schools.com/tags/tryit...hr_default_css


And JSWolf is correct in pointing out that the fancy swirly decorated lines are usually pictures.
Attached Thumbnails
Click image for larger version

Name:	hrSingle.png
Views:	246
Size:	14.4 KB
ID:	157427   Click image for larger version

Name:	hrDouble.png
Views:	254
Size:	13.9 KB
ID:	157428   Click image for larger version

Name:	hrPicture.png
Views:	244
Size:	16.3 KB
ID:	157429  
GrannyGrump is offline   Reply With Quote
Old 06-20-2017, 08:55 AM   #5
GrannyGrump
Obsessively Dedicated...
GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.GrannyGrump ought to be getting tired of karma fortunes by now.
 
GrannyGrump's Avatar
 
Posts: 3,200
Karma: 34977896
Join Date: May 2011
Location: JAPAN (US expatriate)
Device: Sony PRS-T2, ADE on PC
Dang. DiapDealer posted while I was shooting screens.
GrannyGrump is offline   Reply With Quote
Old 06-20-2017, 09:51 AM   #6
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,548
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by GrannyGrump View Post
Dang. DiapDealer posted while I was shooting screens.
Yeah, but you gave examples ... so you still win!
DiapDealer is offline   Reply With Quote
Old 06-20-2017, 09:54 AM   #7
indieauthor83
Enthusiast
indieauthor83 began at the beginning.
 
Posts: 30
Karma: 10
Join Date: Feb 2015
Location: UK
Device: kindle fire hd
Thanks everyone for your advice! This is much appreciated!



Sarah
indieauthor83 is offline   Reply With Quote
Old 06-20-2017, 10:01 PM   #8
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,799
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
and if you use the "Border" method.
Padding (same place) moves the line away from the text

Do look at the treatise on the "box Model"
theducks is offline   Reply With Quote
Old 06-21-2017, 03:46 PM   #9
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,542
Karma: 6613969
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
There are many ways to get what you want. Beside the previous answers, you can use something like the following:

1. In your .xhtml file

Code:
<h1>Title 1</h1>
<p class="border1">&nbsp;</p>

<h1>Title 2</h1>
<p class="border2">&nbsp;</p>
2. In your .css stylesheet

Code:
h1 {
    text-align: center;
    margin: 1em 0 0;
}

.border1 {
    height: 2px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    margin: 0 25% 1em;
    width: 50%;
}

.border2 {
    height: 2px;
    background: black;
    margin: 0 25% 1em;
    width: 50%;
}
Here you can watch how it looks in Sigil:
Click image for larger version

Name:	Image1.png
Views:	255
Size:	99.6 KB
ID:	157449

Of course, you can change everything in the "border1" and "border2" classes (top margin, bottom margin, height (thickness of the line), background color, type of borders, border color, width of the lines, etc., etc.)

Regards
Rubén
RbnJrg is online now   Reply With Quote
Old 06-23-2017, 06:01 AM   #10
indieauthor83
Enthusiast
indieauthor83 began at the beginning.
 
Posts: 30
Karma: 10
Join Date: Feb 2015
Location: UK
Device: kindle fire hd
Thanks 'the ducks' and 'RbnJrg' for the extra tips.

Much appreciated!

Sarah
indieauthor83 is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Invisible chapter headings? bcamp47 Sigil 6 03-24-2013 12:38 AM
How to mark chapter headings JimLL Sigil 107 06-17-2012 09:02 AM
Calibre: Chapter Headings Paxman53 Introduce Yourself 5 10-22-2011 09:13 AM
Chapter Headings Paxman53 Conversion 3 10-12-2011 12:31 PM
Why H1 and H2 Chapter Headings? Ransom Calibre 11 08-10-2011 04:29 PM


All times are GMT -4. The time now is 12:00 AM.


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