Check out Temmie's Soul Beacon comic. This is a fan site to help Temmie get her comic to work on mobile.

Hi Temmie, I assume your options look like the image below so that the comic automatically starts on page load. Unfortunately, itch.io isn't optimized for displaying comics, so if you want the game to work on phones you can't automatically start on page load.


If you change the game to launch in fullscreen, you can control the html file more. This allows you to adjust the image size with the style tag below. This also allows you to scroll the window to the top whenever you press the next button if you want this behavior. The script and style tags have to be added to every html file.


<head>
<script>
document.onload = function() {
     window.scrollTo(0, 0);
}
</script>
<style>
img {
    max-width:100%;
}
</style>
</head>

If you need more help, contact me at TeeTwoLee on Twitter or Gmail.