Update: I half fixed the problem.
By adding ‘width: 100%’ to the img tag it has scaled down the very large images to the width of the container.
However, now any images that weren’t bigger than the container are stretched to the size of the container, making them really pixelated.
Any thoughts?
img {
height: auto; /* Make sure images are scaled correctly. */
max-width: 100%; /* Adhere to container width. */
width: 100%; /* IE11 fix. */
}
-
This reply was modified 5 years, 8 months ago by tomwls.