Quote:
Originally Posted by jonnyl
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
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!