We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This may well apply to other e-readers but I cannot confirm this.
Cover images, and Pale bonus material images, are not properly resized to fit the screen.
I've fixed this manually for cover images by adding the following to the stylesheet
.imgbox { display: grid; height: 100%; } .center-fit {max-width: 100%; max-height: 100vh; margin: auto; }
.imgbox { display: grid; height: 100%; }
.center-fit {max-width: 100%; max-height: 100vh; margin: auto; }
and using it in the cover.xhtml file; e.g.,
<div class="imgbox"> <img class="center-fit" src="OEBPS/cover.png" alt="cover"/> </div>.
<div class="imgbox">
<img class="center-fit" src="OEBPS/cover.png" alt="cover"/>
</div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This may well apply to other e-readers but I cannot confirm this.
Cover images, and Pale bonus material images, are not properly resized to fit the screen.
I've fixed this manually for cover images by adding the following to the stylesheet
.imgbox { display: grid; height: 100%; }
.center-fit {max-width: 100%; max-height: 100vh; margin: auto; }
and using it in the cover.xhtml file; e.g.,
<div class="imgbox">
<img class="center-fit" src="OEBPS/cover.png" alt="cover"/>
</div>
.The text was updated successfully, but these errors were encountered: