Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader > Kobo Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 09-14-2026, 05:30 PM   #76
Falkor
Zealot
Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!
 
Posts: 143
Karma: 100000
Join Date: Dec 2024
Device: Tolino Shine 5
Quote:
Originally Posted by MrSilverstrike View Post
Yes, headers are unaffected by the justification override that Kobo ships. The same thing actually happens with images once NickelTypeFix is installed, so it's more consistent (as images in ebooks are often part of the header). I think that's actually the right behaviour... but perhaps it should be a setting, whether justification applies to everything or not.



Don't get me started on the new renderer... The 5.x renderer also doesn't do letter spacing (at all). I actually have a version of NickelTypeFix for the 5.x firmware that I'm testing... if you're feeling adventurous I'd be happy to post a pre-release that's available for testing.
Yeah, I've been annoyed about letter spacing. But hey, at least the default spacing is usable now. For about a year and a half it was really narrow and difficult to read. I had to use RMSDK back then.

Lack of support for line height is also annoying. Headings with line breaks can look quite horrible.

And they don't support page breaks via CSS.

For hyphenation one has to use the justification buttons. If it would behave like RMSDK and only change the justification in the body tag this would be fine..

During the last two years they haven't managed to get the font weight slider to work –*all it does is switch between regular and bold –*and the default weight in RMSDK is way too light nowadays –*which is really annoying as the publisher font's weight can't be changed..

They keep tweaking some font rendering settings. A couple of versions ago some diffcult fonts like times new roman actually looked decent at small sizes. Not anymore. The screen is quite capable, though. Koreader can make almost any font look good. They really need to work on this.

On the plus side it supports transform. And I've seen a couple of things that it renders more accurately than 4.x. And it doesn't add annoying spaces to dashes...

I sure feel adventurous and could give NickelTypeFix a try..
Falkor is offline   Reply With Quote
Old 09-14-2026, 06:34 PM   #77
MrSilverstrike
Connoisseur
MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.
 
MrSilverstrike's Avatar
 
Posts: 90
Karma: 969306
Join Date: Apr 2024
Location: Belgium
Device: Kobo Libra Color, Kobo Clara Color
Quote:
Originally Posted by Falkor View Post
I sure feel adventurous and could give NickelTypeFix a try..
Well... here you go, for 5.x I tentatively named it NickelReaderFix: NickelReaderFix_for_software_5.18.zip

For the 5.x version I'm including in this comment, here's what it does (so far):

- Improved text appearance and ligatures.
- Preserved publisher letter spacing.
- Corrected drop-cap spacing.
- Consistent hyphenation after changing justification.
- Restored missing custom-font previews.
- Centered reading progress / header when the clock is hidden.
- Reduced unnecessary header and footer screen flashing.
- A few page-turn optimizations.
- Fewer premature or incomplete page displays.

For the mod to work, you must add: webkitTextRendering=optimizeLegibility to the Reading section in your Kobo's configuration file, as is the case with NickelTypeFix.

Unzip it and you should get a Kobo.tgz file. Drop this Kobo.tgz in .kobo and eject to install it. To remove it, simply remove the .adds/nickel-reader-fix folder and reboot your e-reader.

If a new update releases (e.g. 5.19 or something), I recommend removing this preview before upgrading, just to be safe.

As an aside: the font weight slider sadly does not work and that's because the previous version of the renderer used some mechanism (CSM) that is no longer present in the reader. It is one of those things I'm trying to integrate (well, an equivalent replacement) into the mod for 5.x before any release that I consider official, actually.

For optimal results, change the font size or line spacing after installing, or your book may display stale pages. (5.x takes screenshots of each page as a cache, which to me seems wildly inefficient btw)

Last edited by MrSilverstrike; 09-14-2026 at 06:36 PM.
MrSilverstrike is offline   Reply With Quote
Old 09-14-2026, 07:39 PM   #78
jackie_w
Grand Sorcerer
jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.
 
Posts: 6,340
Karma: 16800000
Join Date: Sep 2009
Location: UK
Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3
Quote:
Originally Posted by MrSilverstrike View Post
Yes, headers are unaffected by the justification override that Kobo ships. <snip>. I think that's actually the right behaviour... but perhaps it should be a setting, whether justification applies to everything or not.
You may know this already, but just in case you don't...

For kepubs Nickel uses this as the default override CSS when you change "Justification" in the [Aa] menu:
Code:
div, p { text-align: %1 !important; }
where %1 is the placeholder for your selected Justification setting. It's a bit of a blunt instrument. This is why poorly designed books which use <p> or <div> tags for the headings markup (rather than the proper <h1>, <h2> etc tags) display badly when you choose something other than "Off" as the Justification setting. It's not just headings though. Centred scenebreaks (e.g. <div class="break">***</div>) are much more likely to be forced to the left because they almost always use a <p> or <div> tag.

If you're a Kobopatch user, one of the oldest patches for libnickel.so.1.0.0, Un-Force user text-align in div,p tags in KePubs, lets you change the override to:
Code:
body { text-align: %1 !important; }
i.e. a less severe override. This matches what default Nickel does for standard epubs in the Adobe renderer.

ETA: For the sake of clarity I'm only talking about fw 4.xx. I've no idea whether fw 5.xx has changed many previously "well-known facts".
jackie_w is offline   Reply With Quote
Old 09-14-2026, 08:43 PM   #79
MrSilverstrike
Connoisseur
MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.
 
MrSilverstrike's Avatar
 
Posts: 90
Karma: 969306
Join Date: Apr 2024
Location: Belgium
Device: Kobo Libra Color, Kobo Clara Color
Quote:
Originally Posted by jackie_w View Post
If you're a Kobopatch user, one of the oldest patches for libnickel.so.1.0.0, Un-Force user text-align in div,p tags in KePubs, lets you change the override to:
Code:
body { text-align: %1 !important; }
i.e. a less severe override. This matches what default Nickel does for standard epubs in the Adobe renderer.
Right, I should probably apply that as part of the mod for 4.x too. From a CSS perspective that's indeed a less invasive style to apply, and likely results in more "correct" rendering.

Although one has to wonder if that'll make a big difference in purchased books, which likely are already "optimized" for the kepub renderer (unsure, I haven't looked at any markup since these are encrypted). Sideloaded kepubs are a different story, of course.

(This rule for fw 5.x is different and simply forces text-alignment for everything, including headers etc. I'm unsure about the actual CSS rule off the top of my head, but it works differently.)
MrSilverstrike is offline   Reply With Quote
Old 09-14-2026, 09:19 PM   #80
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: 84,914
Karma: 153791427
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 jackie_w View Post
You may know this already, but just in case you don't...

For kepubs Nickel uses this as the default override CSS when you change "Justification" in the [Aa] menu:
Code:
div, p { text-align: %1 !important; }
where %1 is the placeholder for your selected Justification setting. It's a bit of a blunt instrument. This is why poorly designed books which use <p> or <div> tags for the headings markup (rather than the proper <h1>, <h2> etc tags) display badly when you choose something other than "Off" as the Justification setting. It's not just headings though. Centred scenebreaks (e.g. <div class="break">***</div>) are much more likely to be forced to the left because they almost always use a <p> or <div> tag.

If you're a Kobopatch user, one of the oldest patches for libnickel.so.1.0.0, Un-Force user text-align in div,p tags in KePubs, lets you change the override to:
Code:
body { text-align: %1 !important; }
i.e. a less severe override. This matches what default Nickel does for standard epubs in the Adobe renderer.

ETA: For the sake of clarity I'm only talking about fw 4.xx. I've no idea whether fw 5.xx has changed many previously "well-known facts".
If you use !important for classes that have center used with div or p, will center work in you justify via the Aa menu?
JSWolf is offline   Reply With Quote
Old 09-15-2026, 01:36 AM   #81
elyonson
Junior Member
elyonson began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Sep 2026
Device: Kobo Libra Colour
Lightbulb

Quote:
Originally Posted by jackie_w View Post
If you open the kepub and then the [Aa] menu, what have you set as "Justification" (bottom line)? Try setting it to "Off". Are the chapter headings now centred?
Yes. In most kepubs I bought, when the Justifiction is Off, the title and the image that accompanies it is centered. When I use Full Justify (which is my preference, especially after with the NickelTypeFace mod) the headings get Justified Left. The paragraphs look really good with the NickleTypeFace mod but the Title is on the left. I guess I can just get used to it. I know now it's in the CSS which I kind of don't want to touch because (1) IDK how, and (2) my books are Kobo Store bought and I don't want to dump, edit CSS, and re-upload them.

I came from Kindle, and they have a custom typeface that looks sleek and proper, no matter which justification you use. I kind of annoyed that Kobo doesn't do the same thing.
elyonson is offline   Reply With Quote
Old 09-15-2026, 02:26 AM   #82
rantanplan
Weirdo
rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.
 
Posts: 1,282
Karma: 13516840
Join Date: Nov 2019
Location: Wuppertal, Germany
Device: Kobo Libra 2, Kobo Sage, Kobo Aura H2O, reMarkable PaperPro
Quote:
Originally Posted by MrSilverstrike View Post
Well... here you go, for 5.x I tentatively named it NickelReaderFix: Attachment 225959

For the 5.x version I'm including in this comment, here's what it does (so far):

- Improved text appearance and ligatures.
- Preserved publisher letter spacing.
- Corrected drop-cap spacing.
- Consistent hyphenation after changing justification.
- Restored missing custom-font previews.
- Centered reading progress / header when the clock is hidden.
- Reduced unnecessary header and footer screen flashing.
- A few page-turn optimizations.
- Fewer premature or incomplete page displays.

For the mod to work, you must add: webkitTextRendering=optimizeLegibility to the Reading section in your Kobo's configuration file, as is the case with NickelTypeFix.

Unzip it and you should get a Kobo.tgz file. Drop this Kobo.tgz in .kobo and eject to install it. To remove it, simply remove the .adds/nickel-reader-fix folder and reboot your e-reader.

If a new update releases (e.g. 5.19 or something), I recommend removing this preview before upgrading, just to be safe.

As an aside: the font weight slider sadly does not work and that's because the previous version of the renderer used some mechanism (CSM) that is no longer present in the reader. It is one of those things I'm trying to integrate (well, an equivalent replacement) into the mod for 5.x before any release that I consider official, actually.

For optimal results, change the font size or line spacing after installing, or your book may display stale pages. (5.x takes screenshots of each page as a cache, which to me seems wildly inefficient btw)
Is that for the new Kobo ACCESS Engine?
rantanplan is offline   Reply With Quote
Old 09-15-2026, 03:15 AM   #83
MrSilverstrike
Connoisseur
MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.
 
MrSilverstrike's Avatar
 
Posts: 90
Karma: 969306
Join Date: Apr 2024
Location: Belgium
Device: Kobo Libra Color, Kobo Clara Color
Quote:
Originally Posted by rantanplan View Post
Is that for the new Kobo ACCESS Engine?
It's for the new default ebook reader/renderer (not RMSDK!) on firmware 5.18.

From what I was able to gather, they internally refer to it as TENG (TolinoEngineRenderer) and it's based on Chromium and significantly more modern than the WebKit-based engine in 4.x.
MrSilverstrike is offline   Reply With Quote
Old 09-15-2026, 11:13 AM   #84
MrSilverstrike
Connoisseur
MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.MrSilverstrike ought to be getting tired of karma fortunes by now.
 
MrSilverstrike's Avatar
 
Posts: 90
Karma: 969306
Join Date: Apr 2024
Location: Belgium
Device: Kobo Libra Color, Kobo Clara Color
Quote:
Originally Posted by elyonson View Post
Yes. In most kepubs I bought, when the Justifiction is Off, the title and the image that accompanies it is centered. When I use Full Justify (which is my preference, especially after with the NickelTypeFace mod) the headings get Justified Left. The paragraphs look really good with the NickleTypeFace mod but the Title is on the left. I guess I can just get used to it. I know now it's in the CSS which I kind of don't want to touch because (1) IDK how, and (2) my books are Kobo Store bought and I don't want to dump, edit CSS, and re-upload them.

I came from Kindle, and they have a custom typeface that looks sleek and proper, no matter which justification you use. I kind of annoyed that Kobo doesn't do the same thing.
I also have a whole selection of Kobo Store bought books and they're quite inconsistent, so I can relate.

I'm thinking about expanding NickelTypeFix so you can select overrides if things bother you, like:

- force hyphenation on via CSS
- force alignment (soft and hard variants)
- line height
- and some more common issues

In terms of fonts -- and I am totally biased -- I recommend checking out this collection. In particular, I made Libron to act as a sort of open source replacement for Bookerly, Amazon's default font on Kindle.
MrSilverstrike is offline   Reply With Quote
Old 09-15-2026, 11:47 AM   #85
fogice
Addict
fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!fogice is faster than a rolling 'o,' stronger than silent 'e,' and leaps capital 'T' in a single bound!
 
Posts: 338
Karma: 50000
Join Date: May 2014
Device: Kobo Libra 2
Quote:
Originally Posted by MrSilverstrike View Post
In terms of fonts -- and I am totally biased -- I recommend checking out this collection. In particular, I made Libron to act as a sort of open source replacement for Bookerly, Amazon's default font on Kindle.
It took me a couple of weeks of trying your various fonts, and I have also landed on Libron.
fogice is offline   Reply With Quote
Old 09-15-2026, 12:04 PM   #86
rantanplan
Weirdo
rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.rantanplan ought to be getting tired of karma fortunes by now.
 
Posts: 1,282
Karma: 13516840
Join Date: Nov 2019
Location: Wuppertal, Germany
Device: Kobo Libra 2, Kobo Sage, Kobo Aura H2O, reMarkable PaperPro
Quote:
Originally Posted by fogice View Post
It took me a couple of weeks of trying your various fonts, and I have also landed on Libron.
I agree Libron is lovely and easy on the eye.
rantanplan is offline   Reply With Quote
Old 09-15-2026, 12:15 PM   #87
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: 84,914
Karma: 153791427
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Slab serif fonts are rather ugly.
JSWolf is offline   Reply With Quote
Old 09-15-2026, 03:51 PM   #88
Apollyon202
Addict
Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.Apollyon202 ought to be getting tired of karma fortunes by now.
 
Apollyon202's Avatar
 
Posts: 218
Karma: 251718
Join Date: May 2018
Device: Kobo Libra 2, Clara HD, Aura, Touch
Quote:
Originally Posted by JSWolf View Post
Slab serif fonts are rather ugly.
That's subjective, I agree with you to some extent, with one exception, I really like Caecilia font because it's very legible. Although recently I switched to Newsreader and Fern Micro. Serifs are better in general as they have a classic look but are also very legible.
By the way, my Libra 2 came from the factory without any slab serif font (without Caecilia) installed, so I guess slab serifs are not forced on (Kobo) people.
Apollyon202 is offline   Reply With Quote
Old 09-16-2026, 01:07 AM   #89
Falkor
Zealot
Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!Falkor rocks like Gibraltar!
 
Posts: 143
Karma: 100000
Join Date: Dec 2024
Device: Tolino Shine 5
I accidentally posted this on the Nickelmenu thread, too:

Quote:
Originally Posted by jackie_w View Post
If you're a Kobopatch user, one of the oldest patches for libnickel.so.1.0.0, Un-Force user text-align in div,p tags in KePubs, lets you change the override to:
Code:
body { text-align: %1 !important; }
i.e. a less severe override. This matches what default Nickel does for standard epubs in the Adobe renderer.
The same would be nice to have for the user font. TENG overrides every single font, RMSDK only the one set in the body tag. I prefer the latter.

Quote:
Originally Posted by MrSilverstrike View Post
Well... here you go, for 5.x I tentatively named it NickelReaderFix: Attachment 225959
Thanks, that seems to be workig well.
Is there any way to toggle this on and off with nickel menu? That would make it easier to compare the differences.

On a Mac this won't unzip properly, btw—unless one uses terminal.
Falkor is offline   Reply With Quote
Old 09-16-2026, 06:28 AM   #90
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: 84,914
Karma: 153791427
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 Apollyon202 View Post
That's subjective, I agree with you to some extent, with one exception, I really like Caecilia font because it's very legible. Although recently I switched to Newsreader and Fern Micro. Serifs are better in general as they have a classic look but are also very legible.
By the way, my Libra 2 came from the factory without any slab serif font (without Caecilia) installed, so I guess slab serifs are not forced on (Kobo) people.
Caecilla and Bookerly are ugly slabs. Why Amazon feels slabs are good I have no idea.
JSWolf is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Typesetting Shakespeare Psymon ePub 26 06-20-2016 04:21 AM
Best typesetting/typography engine: Kindle Voyage vs Kobo Aura H2O cerem0ny Which one should I buy? 16 04-18-2016 08:45 AM
Is there a way to import kepub to calibre/convert a kepub to other formats? Major General Library Management 9 04-08-2014 10:00 PM
iOS Devices [mod: might be] Banned in Europe [mod: Germany] CyGuy News 27 12-13-2011 07:47 AM


All times are GMT -4. The time now is 04:40 AM.


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