View Single Post
Old 01-02-2025, 07:40 AM   #3
TheBereaved
Junior Member
TheBereaved began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jan 2025
Device: Kobo Forma
Quote:
Originally Posted by jonnyl View Post
To make the images larges relative to the text, try increasing the 'Zoom (dpi)' setting in the bottom menu, 3rd tab (page icon).
Thanks that worked splendidly! Exactly what I was looking for!

Quote:
Originally Posted by jonnyl View Post

To left align just the body text, a custom style tweak may work for your book. First try the following tweak, which should only left-align paragraph text:

Code:
p { text-align: left !important; }
That also worked but ended up using a slight rework as, it was also contained within a <p>. Those small images always shown up with <p class="orn"> so this was the final css

Code:
p:not(.orn) { text-align: left !important; }
Thanks a lot for your help!
TheBereaved is offline   Reply With Quote