View Single Post
Old 04-09-2025, 01:59 PM   #9
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,471
Karma: 169113646
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
You not only need to rotate the image, you need to rotate the sizing. Say you have an image which is 1000px x 1500px and the class used for the image in the stylesheet and using your second image) is something like:
Code:
author_pic {
width: 300px;
height: 200px;
}
When the image was rotated, you would need to change that code to something like:
Code:
author_pic {
width: 200px;
height: 300px;
}
Personally, I would use a % for the sizing so something like:
Code:
author_pic {
width: 40%;
height: auto;
}
You may also find this done in inline code so instead of something like:
Code:
<img alt="Stratofortress" class="imagew_50" src="../Images/image00344.jpeg"/>
you would see this:
Code:
<img height="163" alt="Stratofortress" src="../Images/image00144.jpeg" width="325"/>
DNSB is offline   Reply With Quote