AndrewInCyprus
New member
Hi all,
My photo club program generates an HTML file containing the sequence of images. This has worked for years but I've had a user report - and I've confirmed it - that on Windows 11 running Chrome or Edge, the image doesn't appear unless you zoom in/out or switch to another tab and back again. The code is pretty simple (below) - I'm a bit stumped; any suggestions?
-Andrew
<!DOCTYPE html>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<style type="text/css">
<!--
body {
background-color: #000000;
}
body,td,th {
color: #FFFFFF;
}
a:link {
color: #FFFF00;
}
a:visited {
color: #00FF00;
}
-->
</style></head>
<body>
<p align="center"><img src="../Images/1983697.jpg" width="1024" height="576"></p>
</body>
</html>
My photo club program generates an HTML file containing the sequence of images. This has worked for years but I've had a user report - and I've confirmed it - that on Windows 11 running Chrome or Edge, the image doesn't appear unless you zoom in/out or switch to another tab and back again. The code is pretty simple (below) - I'm a bit stumped; any suggestions?
-Andrew
<!DOCTYPE html>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<style type="text/css">
<!--
body {
background-color: #000000;
}
body,td,th {
color: #FFFFFF;
}
a:link {
color: #FFFF00;
}
a:visited {
color: #00FF00;
}
-->
</style></head>
<body>
<p align="center"><img src="../Images/1983697.jpg" width="1024" height="576"></p>
</body>
</html>