Thread: Image upscale
View Single Post
Old 09-13-2023, 10:48 AM   #3
Vanguard3000
Groupie
Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.Vanguard3000 ought to be getting tired of karma fortunes by now.
 
Posts: 169
Karma: 474196
Join Date: Jan 2011
Location: Canada
Device: Kobo Libra 2
Closest I could suggest would be to add a class/style to all of your images to clamp them to the screen's dimensions, so they don't spill outside the page. I often use something like:

Code:
img {
width:100%;
max-height:100%;
object-fit:contain;
}
Sometimes I'll change the max height to 80% or so if you want to leave some room for a caption. But if you've got images that are floating left or right, varying widths and so forth and there's no existing styling, you may have to go through it manually and add a few of your own classes.
Vanguard3000 is offline   Reply With Quote