Demo4 - Changing Colors
Demo 4 shows a single board half sized with differnet (blue'ish) colors.
The relevant content of the .html file is shown below. In order to change the colors, it is best to add a short <style> section in the header part of the html file, but below the .js call
<HTML>
<HEAD
:::::::::::
<style>
.iChessSq.WhSq { background-color: #DFDFDF; }
.iChessSq.BlSq { background-color: #00A8FF; }
</style>
</HEAD>
<BODY>
<script type="text/javascript" >
// See documentation on http://Eitschess.de
Cols = 1; // Number of columns
Rows = 1; // Number of Rows
Scale = 0.6; // Scale of the boards 1.0 ~55 pixel per field
DisplayPostings ='0'; // display the posting area, default is "b" for bottom, "0" switches the Posting area off.
UpdateInterval = 5;
iChess();
</script >
</BODY >
</HTML>