Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle

Notices

Reply
 
Thread Tools Search this Thread
Old 01-06-2023, 09:38 PM   #1
talaivan
Groupie
talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.
 
Posts: 176
Karma: 4710362
Join Date: Oct 2007
Device: Sony prs-505
Scribe -- reduce margins?

The margins on the Scribe are too big (significantly bigger than on the Elipsa, for example). Is there any way to reduce them? I'm pretty sure there is not, but I thought someone might have found a way to do this. Also it would be nice if one could disable the font change when pinching out or in by mistake. Apparently this is also impossible. The Scribe is a beautiful machine with terrible software, IMO.
talaivan is offline   Reply With Quote
Old 01-06-2023, 10:14 PM   #2
Sirtel
Grand Sorcerer
Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.Sirtel ought to be getting tired of karma fortunes by now.
 
Sirtel's Avatar
 
Posts: 10,087
Karma: 224756896
Join Date: Jan 2014
Location: Estonia
Device: Kobo Sage & Libra 2
If you sideload from Calibre, you can reduce margins in the files themselves. To do that in bulk, convert them to AZW3/KFX and put the following code in the Look & Feel -> Styling -> Extra CSS:
Code:
html {
  margin-left: -40px;
  margin-right: -40px;
  break-inside: avoid !important
}
Adjust the numbers according to your preferences.
Sirtel is offline   Reply With Quote
Advert
Old 01-07-2023, 01:46 PM   #3
talaivan
Groupie
talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.
 
Posts: 176
Karma: 4710362
Join Date: Oct 2007
Device: Sony prs-505
Thanks! That worked -- much obliged.
talaivan is offline   Reply With Quote
Old 01-10-2023, 04:13 PM   #4
Sonnenfee
Zealot
Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.
 
Sonnenfee's Avatar
 
Posts: 109
Karma: 421170
Join Date: Oct 2021
Device: Kindle, Kobo, PocketBook, Sony, Woxter
Few days ago I have tried different values I personally like the -100px setting best, which looks like at the 3rd photo in this post:

margin-left/margin-right -100px
Sonnenfee is offline   Reply With Quote
Old 01-10-2023, 04:37 PM   #5
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,897
Karma: 128597114
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 Sonnenfee View Post
Few days ago I have tried different values I personally like the -100px setting best, which looks like at the 3rd photo in this post:

margin-left/margin-right -100px
How can you use -100px? That would make the text go past the edges of the screen.

This is what I used for a 300DPI Kindle.

Code:
html {
  margin-right: -45px;
  margin-left: -45px;
  break-inside: avoid !important;
}
JSWolf is offline   Reply With Quote
Advert
Old 01-10-2023, 04:39 PM   #6
Sonnenfee
Zealot
Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.
 
Sonnenfee's Avatar
 
Posts: 109
Karma: 421170
Join Date: Oct 2021
Device: Kindle, Kobo, PocketBook, Sony, Woxter
Quote:
Originally Posted by JSWolf View Post
How can you use -100px? That would make the text go past the edges of the screen.
No. Look at the picture.
Sonnenfee is offline   Reply With Quote
Old 01-10-2023, 04:48 PM   #7
Sonnenfee
Zealot
Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.
 
Sonnenfee's Avatar
 
Posts: 109
Karma: 421170
Join Date: Oct 2021
Device: Kindle, Kobo, PocketBook, Sony, Woxter
See the attachment out of CSS. It works at the Scribe.
If the same works on a Kindle with 6"/6,8"/7" with 300 dpi I don't know, I haven't tried I'm using my 6,8" & 7" Kindle devices with KOReader.
Attached Thumbnails
Click image for larger version

Name:	margin-left_margin-right_-100px.JPG
Views:	94
Size:	10.7 KB
ID:	198930  

Last edited by Sonnenfee; 01-10-2023 at 05:31 PM.
Sonnenfee is offline   Reply With Quote
Old 01-16-2023, 08:27 PM   #8
DuckieTigger
Wizard
DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.
 
DuckieTigger's Avatar
 
Posts: 4,742
Karma: 246906703
Join Date: Dec 2011
Location: USA
Device: Oasis 3, Oasis 2, PW3, PW1, KT
Quote:
Originally Posted by JSWolf View Post
How can you use -100px? That would make the text go past the edges of the screen.

This is what I used for a 300DPI Kindle.

Code:
html {
  margin-right: -45px;
  margin-left: -45px;
  break-inside: avoid !important;
}
You are correct. The -100px won't work on a 7" 300DPI Oasis. It likely won't work on your 6" 300DPI PW3 either. I tried and even -55px still works on the 7" without cutting off words. Since the margin appears to be a fixed size relative to the width of the page this workaround should do the trick:
Code:
html {
  margin-left: -6%;
  margin-right: -6%;
  break-inside: avoid !important;
}
I tested with -5% (still big margin), -10% (too much, cuts off text), -8% (goes all the way to the edge in portrait mode, cuts off text in landscape). It appears -6.5% -6% is the biggest offset that leaves a very small margin in portrait mode, and none in landscape mode.

Would be nice if you could test this out on your 6" PW3 and see if it gives the same result of tiny margin in portrait mode, (almost) none in landscape. If that is the case it might work on all 300DPI Kindles, possibly even on lower resolution ones.

ETA: I have tested with my own PW3 that I dug out of the closet, and my initial -6.5% does not work in landscape mode as the bezel prevents viewing all the way to the edge of the display. 6% works as advertised without having to tilt the device to look underneath the bezel.

Last edited by DuckieTigger; 01-22-2023 at 12:57 AM.
DuckieTigger is offline   Reply With Quote
Old 01-17-2023, 01:39 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,897
Karma: 128597114
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 DuckieTigger View Post
You are correct. The -100px won't work on a 7" 300DPI Oasis. It likely won't work on your 6" 300DPI PW3 either. I tried and even -55px still works on the 7" without cutting off words. Since the margin appears to be a fixed size relative to the width of the page this workaround should do the trick:
Code:
html {
  margin-left: -6.5%;
  margin-right: -6.5%;
  break-inside: avoid !important;
}
I tested with -5% (still big margin), -10% (too much, cuts off text), -8% (goes all the way to the edge in portrait mode, cuts off text in landscape). It appears -6.5% is the biggest offset that leaves a very small margin in portrait mode, and none in landscape mode.

Would be nice if you could test this out on your 6" PW3 and see if it gives the same result of tiny margin in portrait mode, (almost) none in landscape. If that is the case it might work on all 300DPI Kindles, possibly even on lower resolution ones.
I'll be able to try it on a PW3 and a PW5. Just not until about a week.
JSWolf is offline   Reply With Quote
Old 01-22-2023, 12:59 AM   #10
DuckieTigger
Wizard
DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.
 
DuckieTigger's Avatar
 
Posts: 4,742
Karma: 246906703
Join Date: Dec 2011
Location: USA
Device: Oasis 3, Oasis 2, PW3, PW1, KT
Quote:
Originally Posted by JSWolf View Post
I'll be able to try it on a PW3 and a PW5. Just not until about a week.
I have revived my own PW3, and tested, and edited post#8 to the new number.

ETA: I also tested on the KT and PW1, which are all different DPI, and the same setting with azw3(kf8), since they won't do kfx, works with the same results.

Last edited by DuckieTigger; 01-22-2023 at 01:29 AM.
DuckieTigger is offline   Reply With Quote
Old 01-22-2023, 04:05 AM   #11
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,097
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
Next test is to see does
Quote:
html {
margin-left: -6.0%;
margin-right: -6.0%;
break-inside: avoid !important;
}
survive epub2 upload to KDP, and still be in a bought azw3 download.

I'd not hold my breath! I'd try it without the "break-inside: avoid !important;"

Last edited by Quoth; 01-22-2023 at 05:37 AM. Reason: 6.5 -> 6.0
Quoth is offline   Reply With Quote
Old 01-22-2023, 04:50 AM   #12
Sonnenfee
Zealot
Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.Sonnenfee ought to be getting tired of karma fortunes by now.
 
Sonnenfee's Avatar
 
Posts: 109
Karma: 421170
Join Date: Oct 2021
Device: Kindle, Kobo, PocketBook, Sony, Woxter
Quote:
Originally Posted by Quoth View Post
I'd try it without the "break-inside: avoid !important;"
That’s what I did by using -100px for margin-left/margin-right in the CSS without the above mentioned line, the result is shown at my linked picture. The size of the display of the Scribe can thus be used excellently.
Sonnenfee is offline   Reply With Quote
Old 01-22-2023, 05:36 AM   #13
DuckieTigger
Wizard
DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.
 
DuckieTigger's Avatar
 
Posts: 4,742
Karma: 246906703
Join Date: Dec 2011
Location: USA
Device: Oasis 3, Oasis 2, PW3, PW1, KT
Quote:
Originally Posted by Sonnenfee View Post
That’s what I did by using -100px for margin-left/margin-right in the CSS without the above mentioned line, the result is shown at my linked picture. The size of the display of the Scribe can thus be used excellently.
Since different devices need different values for the offset, I tried to avoid that by going relative. Try this one on your Scribe, see if it works:

Code:
html {
  margin-left: -6%;
  margin-right: -6%;
}
The break-inside may or may not be necessary - for some fringe cases where the margins are being abused as layout support.

If it works on Scribe, then it will work universally - either for kf8 or kfx.
DuckieTigger is offline   Reply With Quote
Old 01-22-2023, 01:27 PM   #14
talaivan
Groupie
talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.talaivan ought to be getting tired of karma fortunes by now.
 
Posts: 176
Karma: 4710362
Join Date: Oct 2007
Device: Sony prs-505
It's very strange that Amazon does not allow smaller margins on books bought from them -- it seems to me that, on the Scribe at least, the smallest margins available are not very comfortable for reading. Kobo doesn't do this. It would probably take no more than an hour or so for one of their programmers to add a smaller margin setting (so there are 4 instead of 3) to the software. My guess is that the smaller devices are OK (or at least adequate) with the margins they have and that they just transferred that software to the Sage. It's annoying to have to jump through so many hoops to make a book comfortable to read on the Sage.
talaivan is offline   Reply With Quote
Old 01-22-2023, 01:46 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,097
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
About 5 minutes programming and week testing, maybe, to have a margin that doesn't add 6% to the ebook margins. It's plain silly. On the really old Kindles you could edit a prefs file (which setting was destroyed if you selected a margin on the GUI).

It's not the only daft thing Amazon has done with Kindles.
Quoth is offline   Reply With Quote
Reply

Tags
margin offset, margins


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Kindle Scribe - DS chrispe Amazon Kindle 11 12-26-2022 11:10 PM
Kindle Scribe - change right & left margins? poczynek Conversion 0 12-02-2022 06:21 PM
Amazon Scribe Läsare Amazon Kindle 12 11-02-2022 08:22 AM
Reduce margins and normalize line spacing mariowarner Kindle Formats 37 05-16-2019 03:57 PM


All times are GMT -4. The time now is 08:25 AM.


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