Using IE & FF at 1024x768 resolution, I'm looking at:
http://www.flyingscool.com/FC_StartJava.html
In IE your ISP's floating ad obscures part of the left hand list item menu.
In FF the background doesn't show.
Overall the page looks pretty good considering you are just learning.
You don't need this:
Code:
<script language="JavaScript1.2">
/*
Watermark Backgound Image Script- © Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS,
visit dynamicdrive.com
*/
if (document.all||document.getElementById)
document.body.style.background="url('Background2.gif') white topleft no-repeat fixed"
</script>
Instead, add it to the style section and, since you already have two style sections, the second of which has some unused properties, combine them and add the body background declaration (with comments to help you see what the list menu is being told):
Code:
<style>
body {
background:blue url('Background2.gif') no-repeat fixed top left;
}
A:hover {
color:#FF0000;
font-weight:bold
}
#foldheader { /*governs elements with id="foldheader"*/
cursor:pointer; /*use link style cursor, most browsers*/
cursor:hand; /*use link style cursor, some older browsers*/
font-weight:bold; /*use bold font*/
list-style-type:none; /*use no left hand margin marker (like a square, a disc, or an image) for list items with this id*/
}
#foldinglist { /*governs elements with id="foldinglist"*/
list-style-type:none; /*use no marker (like above) for list items with this id*/
}
</style>
Bookmarks