Hello! I've recently started using FanFicFare and Calibre to send AO3 ePubs to my Kobo Libra 2. However, on the title page, the words get cut off on the right. I've tried editing the CSS by adding this to the personal.ini:
Code:
add_to_output_css:
body.fff_titlepage {font-size: 2vmax;
margin: 5vw;}
The above does change the font-size and the margin on the top and left, but it doesn't change the margin on the right. I've also tried margin-right: 5vw and 5vmax but that didn't seem to do anything. It looks like it thinks the viewport is a bit bigger than it actually is because it does cut off at a certain point.
For example, instead of:
Quote:
Warnings: No Archive
Warnings Apply
|
It becomes
Quote:
Warnings: No Archive Warnin
Apply
|
I tried this:
Code:
add_to_output_css:
body.fff_titlepage { width: 80%%;
margin: auto;
padding: 0;}
which makes it so that the words don't get cut off, but it goes the full length of the viewport with no margins on either side, even if I change the width. Adjusting the margin to be 5vw or 5vmax only changes the left and top margin, like in the first snippet.
This problem isn't present within the actual story, just the title page. Any help is appreciated!