Problems with Safari image scaling

Yes Safari on Windows was discontinued years ago and has no support for modern techniques. It’s like testing on IE6 and saying the site doesn’t work. There are probably less that 0.00001% of users using it and they are probably only misguided developers :smile:

Generally (not always) if it works on Chrome then it will work in Safari as they use the same engine.

There are however many subtle differences on the mac operating system that may affect layouts and can only be tested on those systems. Luckily though (if you have followed good coding practices) then you will find chrome on PC works much the same as Chrome on mac (ignoring os styling etc).

1 Like

Like me… I know!

Paul, If you have time and patience, could you have alook at the code governing these images and let me know if there is anything wrong/missing/excessive?

Many thanks

The images seem to be scaling ok.

As an aside you can fix Safari windows by setting imnportant on the height rule.

.img-container img {
height: auto!important;
}

Safari windows has some default styles for the image using attribute selectors which are over-riding the height:auto.

Magic!!!

It’s working alreday, on Safari.

Many thanks, Paul.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.