Main site: missing background colour
-
The main site does not specify a background colour for the
<html>
or<body>
elements.In most browsers, that's not noticable, since they default to a white background. But in Firefox, with the "System theme - auto" enabled, and Windows dark mode turned on, it leaves the page background completely transparent, which doesn't look great:
I don't know whether you're planning to replace the entire theme when the new site goes live, or keep it as is. But if you're keeping it, you should probably add
background-color:white;
to the page. -
The main site does not specify a background colour for the
<html>
or<body>
elements.In most browsers, that's not noticable, since they default to a white background. But in Firefox, with the "System theme - auto" enabled, and Windows dark mode turned on, it leaves the page background completely transparent, which doesn't look great:
I don't know whether you're planning to replace the entire theme when the new site goes live, or keep it as is. But if you're keeping it, you should probably add
background-color:white;
to the page.@Richard-Deeming Thanks Richard, we are replacing the entire theme, still looking good for a Tuesday launch
-