What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

Local image only appears after zooming or switching tab

AndrewInCyprus

New member
Joined
Jul 28, 2024
Messages
4
Reaction score
0
HTML Coins
0
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>
 
I've cut out the CSS and now the code looks like this; it shows the same problem.

<!DOCTYPE html>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<style type="text/css">
</style></head>
<body>
<p align="center"><img src="../Images/1983697.jpg" width="1024" height="576"></p>
</body>
</html>
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back