Hello.
I was wondering, is it possible to have some text stick to the bottom of the page in the e-reader? Some printed books use this layout, for example for some description of the incoming chapter.
I found this css, which works but has an issue: when the text is too long, or when the font is too big, the upper part disappears - both the text in the "footer" and everything else above it in the same file.
Code:
{
position:fixed;
bottom:0em;
}
I'd like something that makes the text stick to the bottom, but that splits it across as many page-views as needed, if needed.
Hope I made ms clear