Hi. I was trying to fix a .recipe file that was getting small images in my kindle paperwhite. So I made a new function so it downloads the biggest size. Then added some img css so it used the full width. But it didn't work. When I converted the .mobi file to .epub I noticed that all the images had some custom css:
Code:
.calibre_13 {
height: 222px;
vertical-align: baseline;
width: 414px;
}
.calibre_14 {
height: 252px;
vertical-align: baseline;
width: 414px;
}
.calibre_15 {
height: 240px;
vertical-align: baseline;
width: 414px;
}
And many more like that. All with that width, 414px, preventing it from using the full screen. Why is calibre doing that? How do I stop it?
Thank you.