- Joined
- May 29, 2019
- Messages
- 7
It's bothersome to have some manga be far too big (you can't read more than less than half of the page) for Fit Width and unreadable text at Fit Height or Fit Container. It'd be nice to have a setting where a fixed width could be set.
In case anyone reading is wondering a stylus (or any other css editing plugin) can be used to do what the suggestion is.
In case you want something that will work for right now its:
Obviously change the 1000px to whatever size you want it at.
In case anyone reading is wondering a stylus (or any other css editing plugin) can be used to do what the suggestion is.
In case you want something that will work for right now its:
Code:
.reader.fit-horizontal .reader-main,
.reader.fit-horizontal .reader-images,
.reader.fit-horizontal .reader-image-wrapper,
.reader.fit-horizontal .reader-images img {
max-width: 1000px;
margin: auto;
}
Obviously change the 1000px to whatever size you want it at.