Genesis interface doesn't appear, or doesn't appear properly, under Netscape 4

The default Genesis template which shipped with all versions through 2.1.0.0021 caused rendering problems with Netscape 4, particularly on the "Edit User Settings" screen.

The default template will be fixed in Genesis 0022 to correct this problem. However, the template.html file is not replaced during upgrades, and so those upgrading from earlier versions may need to update their template manually.

The main template file -- genesis/script_data/templates/template.html -- originally contained code like this:

	<body>
	<center>
	<div style="text-align:left;align:center;width:638px">

		%script_output%

		<hr size="1" />

		%cpfooter%

	</div>
	</center>
	</body>

The <div> tag caused the problem. That block of HTML should be replaced with:

	<body>
	<center>
	<table border="0" width="638"><tr><td align="left" valign="top">

		%script_output%

		<hr size="1" />

		%cpfooter%

	</td></tr></table>
	</center>
	</body>

In older versions of Genesis, the template.html file is stored in "script_data/templates/english" rather than "script_data/templates".