Register Guidelines E-Books Today's Posts Search

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

Notices

Reply
 
Thread Tools Search this Thread
Old 03-13-2017, 06:14 PM   #1
Just some guy
Enthusiast
Just some guy began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Mar 2017
Device: none
Fast way of adding empty lines to all paragraphs (or, even better, increase spacing)?

Hi,
I'm an absolute beginner, and I literally don't have a clue about html and css.

I've converted a bunch of InDesign files to ePub, and everything looks fine except I realize that the spacing before and after paragraphs are almost non-existing in the ePub.

So I'm looking for a fast and easy way to add some extra space, preferably by cheating so I won't have to learn anything about ebook editing. (Not just because I'm lazy; I've only got this one book and I'm never ever going to write another, so it's just not worth it to spend too much time.)

I found out that it's possible to simply add a <br> in the code whereever I want an empty line (that won't make the entire file explode or something, will it?), so that's an option if everything else fails.

Only thing is I need to do it like a thousand times, so it would be really nice if there were some kind of automated way to do it. Also, a full line is a bit over the top; something like 3/4 line or so would be perfect...

Thank you in advance for any hints or suggestions!
Just some guy is offline   Reply With Quote
Old 03-13-2017, 06:33 PM   #2
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,800
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
margin-top: 1em; adds 1em of height (em is the current size of the line)
2em makes 2 lines of top space

you add this to the CSS for the style in the <p style="name_here">

if the p has no style
just assign to the "p' level

Code:
p {margin-top: 1em;}
theducks is offline   Reply With Quote
Old 03-13-2017, 07:00 PM   #3
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,970
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
A 1em paragraph space is too much. It distracts from reading as your eye doesn't move to the next paragraph but to the space instead. It can get mistaken for a section break. But overall, a 1em space makes the book rather hard to read.

I've seen some publishers use a .3em space between paragraphs. That's not going to throw the reader out of the book.
JSWolf is online now   Reply With Quote
Old 03-13-2017, 09:08 PM   #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,800
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 JSWolf View Post
A 1em paragraph space is too much. It distracts from reading as your eye doesn't move to the next paragraph but to the space instead. It can get mistaken for a section break. But overall, a 1em space makes the book rather hard to read.

I've seen some publishers use a .3em space between paragraphs. That's not going to throw the reader out of the book.
What you like and what the OP likes are INDIVIDUAL tastes. YOU do not get to dictate OP's tastes.

My post was an example. the number is up to the OP
theducks is offline   Reply With Quote
Old 03-14-2017, 05:16 AM   #5
Just some guy
Enthusiast
Just some guy began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Mar 2017
Device: none
Quote:
Originally Posted by theducks View Post
margin-top: 1em; adds 1em of height (em is the current size of the line)
2em makes 2 lines of top space

you add this to the CSS for the style in the <p style="name_here">

if the p has no style
just assign to the "p' level

Code:
p {margin-top: 1em;}
Thank you very much!
Just some guy is offline   Reply With Quote
Old 03-14-2017, 07:22 AM   #6
Just some guy
Enthusiast
Just some guy began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Mar 2017
Device: none
Quote:
Originally Posted by JSWolf View Post
A 1em paragraph space is too much. It distracts from reading as your eye doesn't move to the next paragraph but to the space instead. It can get mistaken for a section break. But overall, a 1em space makes the book rather hard to read.

I've seen some publishers use a .3em space between paragraphs. That's not going to throw the reader out of the book.
Thank you for the .3em suggestion!

I would never have figured this out without theducks , but .3em is exactly the amount of space I was looking for.
Just some guy is offline   Reply With Quote
Old 04-04-2017, 01:51 AM   #7
Just some guy
Enthusiast
Just some guy began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Mar 2017
Device: none
Quote:
Originally Posted by theducks View Post
margin-top: 1em; adds 1em of height (em is the current size of the line)
2em makes 2 lines of top space

you add this to the CSS for the style in the <p style="name_here">
Hi again,
I have a mysterious problem when I edit my various CSS styles:

In most cases, edits just work perfectly; changes are immediately updated in the text.

But in other cases, with other styles, there's simply no effect at all when I change a margin (or any other property for tht particular style).

It feels like I somehow fail to make the edit 'bite;' like I should press 'Enter' or 'Save' or something...
Just some guy is offline   Reply With Quote
Old 04-04-2017, 02:06 AM   #8
Just some guy
Enthusiast
Just some guy began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Mar 2017
Device: none
OK, please ignore my previous post; I now realize that if I for instance edit a Heading-4 for one chapter, that heading is only edited 'locally' for that chapter; not 'globally' for the entire book.

So, as far as I can see, I should first double-click each separate chapter to see which styles are used in it, and then edit each one.

And there's like a couple of hundreds, so now I know what to do for the rest of the day.
Just some guy is offline   Reply With Quote
Old 04-04-2017, 05:52 AM   #9
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,970
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
In some eBooks, the class used for the chapter header is different. But for the actual book chapters, I've not seen more than three different classes. You do get different classes in other parts of the book like the about bits.
JSWolf is online now   Reply With Quote
Old 04-04-2017, 05:58 AM   #10
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,800
Karma: 54830978
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
See! That is the beauty of using LINKED Style Sheets

Define once,
Apply class=<name> as many times as needed.
I have a 'chapno' style as a saved clip. I paste that in the stylesheet, then REGEX Search and Replace to change each chapter heading to use style="chapno"
theducks is offline   Reply With Quote
Old 04-04-2017, 06:11 AM   #11
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,970
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
See! That is the beauty of using LINKED Style Sheets

Define once,
Apply class=<name> as many times as needed.
I have a 'chapno' style as a saved clip. I paste that in the stylesheet, then REGEX Search and Replace to change each chapter heading to use style="chapno"
If I was replacing all the chapter styles, I would not be using a class. I would just go with <h2>Chapter Title</h2> and apply the chapter title styling to h2. It's neater and works better for detecting chapter titles if you want to generate a new ToC.
JSWolf is online now   Reply With Quote
Old 04-04-2017, 06:40 AM   #12
Just some guy
Enthusiast
Just some guy began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Mar 2017
Device: none
Thank you very much to both of you!

I'm afraid I don't understand much of it, though. My main problem, besides my total newb-status, is the fact that I had a very complicated mess to deal with in the first place, with lots of fonts and styles and effects. So I just get what I deserve now, haha. That's alright, the book turns out nicely, thanks to you guys!
Just some guy is offline   Reply With Quote
Old 04-04-2017, 09:47 AM   #13
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,800
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 Just some guy View Post
Thank you very much to both of you!

I'm afraid I don't understand much of it, though. My main problem, besides my total newb-status, is the fact that I had a very complicated mess to deal with in the first place, with lots of fonts and styles and effects. So I just get what I deserve now, haha. That's alright, the book turns out nicely, thanks to you guys!
You are probably wasting your time with "lots of fonts", if you are going with some of the common distribution channels AND DEVICES.

Many devices IGNORE (some just by default) Fonts. A bit of 'we know best' and give the ability to choose to the user.
Usually you get to Bold, Italic, Underline.
The other thing is "do you have the license" to distribute those fonts? Very few devices (have built in) support the range of fonts found on a typical PC
Typical Foundry Fonts run $49 a face (that is $200 for the Family if you use all, (normal) Bold, Italic, Bold italic) and I don't know what other terms are there when embedding )
theducks is offline   Reply With Quote
Old 04-04-2017, 10:16 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,970
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
When a CSS as messy as that one, there's a very good chance that it will cause a problem with some Readers/programs/apps. Do you want to risk that? If you don't, then you'll have to learn CSS/HTML and fix that mess.

I learned by diving into CSS/HTML and just learning. Also, what I could not figure out, I search for to find out what's what.
JSWolf is online now   Reply With Quote
Old 04-05-2017, 12:06 AM   #15
Just some guy
Enthusiast
Just some guy began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Mar 2017
Device: none
Quote:
Originally Posted by theducks View Post
You are probably wasting your time with "lots of fonts", if you are going with some of the common distribution channels AND DEVICES.

Many devices IGNORE (some just by default) Fonts. A bit of 'we know best' and give the ability to choose to the user.
Usually you get to Bold, Italic, Underline.
Well, 'lots of font' translates to around 6, I think. And everything looks like it should in Adobe, Sigil and Calibre. It also passes the validator-test. So I cross my fingers...

Quote:
Originally Posted by theducks View Post
The other thing is "do you have the license" to distribute those fonts?
Yes, I'm very careful about everything related to IP and I only use fonts that I have written permission to use (and embed) commercially.
Just some guy is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Is there an easy way to increase the letter-spacing in a font? doubleshuffle Workshop 6 07-12-2016 03:40 PM
blank lines between paragraphs franklekens Kobo Reader 71 01-26-2015 12:52 PM
Spacing between paragraphs not converting beccas716 Conversion 4 10-11-2013 10:25 AM
Should there be any empty lines or paragraphs fructal Sigil 3 07-13-2012 04:07 AM


All times are GMT -4. The time now is 03:19 AM.


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