Manga Loader (unmaintained)

Support for over 70 sites! Loads manga chapter into one page in a long strip format, supports switching chapters, minimal script with no dependencies, easy to implement new sites, loads quickly and works on mobile devices through bookmarklet

< Feedback on Manga Loader (unmaintained)

Question/comment

§
Posted: 2015-11-15

Page numbers

Is there a means of moving the page number between the images instead of on top of them (or just remove them) through editing the script? It's rather inconsequential, but still a small, OCD-ish annoyance.

fuzetsuAuthor
§
Posted: 2015-11-15

Yup, easy to do with the custom css setting.

Use this to make it so that it doesn't overlap the image:

.ml-counter {
  margin-top: 5px;
}

You can play around with the number to get the offset you want.

Or this to hide it completely:

.ml-counter {
  display: none;
}

Example:

Post reply

Sign in to post a reply.