It used to be 'procrastination is the thief of time!' But what about time itself. Is it a self?
When you are sick you don't feel like posting - anything. When you are sitting relaxing you don't feel like posting... When you have a cat glued to your lap, you don't feel like posting or moving.
So why today? It is my (step)son's birthday. It is not warm still 20C in the study. In Bristol it is 4C so I can't complain. I need to go to the shops for important stuff like food. I might have to put a jacket on...
I tell myself that I am waiting for the traffic to dissipate. Maybe true but the fact is I don't enjoy the stress of avoiding potholes especially on main roads. At 80 kilometres an hour on Ontdekkers it cost R5500 last year.
Being retired I should have time to do all the things I was doing in my spare time when I wasn't alone. But projects that I put down to attend to other things are still lying there. Recently I got a tummy-bug that really put me down. Thanks to a friend I have some tablets that work. While down but not out, I gave some thoughts to some recent 'issues'.
The latest is the lack of interest in reworking of some established web sites. My long-time friend Bob has taken issue with a particular web site which accepts pictures of a certain size in pixels. So I researched the problem. I reached for GIMP [gimp.org] and examined a couple of pictures taken with my phone. It is not a modern phone - 2020ish. But the number of pixels are enormous in comparison to the 90s!
See what I mean? 4000 plus width and nearly 3000 height in pixels.
Designing a web page for an 800px width typically involves creating a fixed-width container to ensure compatibility with older or smaller monitors () without triggering horizontal scrolling. While modern designs favour responsiveness, limiting content width to around 760–800px (to allow for scrollbars) ensures usability on smaller, older, or non-maximized browser windows.
Key Aspects of 800px Web Design:
Optimal Container Width: To avoid horizontal scrollbars, set the container width slightly less than, often allowing for browser vertical scrollbars.
CSS Implementation: Use max-width: 800px; or width: 800px; on a main wrapper container to restrict content width, often centred using margin: 0 auto;.
.
Readability: Limiting the width prevents, for example, long text lines on large monitors, improving readability.
max-width: 800px;
margin: 0 auto;
padding: 0 10px; /* Optional padding for smaller screens */
}

