Thank you, thank you for your response... Here is my HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>
<snipped specifics></title>
<link rel="stylesheet" type="text/css" href="file://///2003-ts/example.css" />
<p align="left"><img src="images/example.jpg" width="950" height="134" />
</head>
<body>
<p>
<ul id="nav">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<ul><li><a href="#">example</a></li>
<li><a href="#">example</a></li>
<li><a href="#">example</a></li></ul>
<li><a href="#">example</a></li><ul>
<li><a href="#">example</a></li>
<li><a href="#">example</a></li>
<div id="banner"><img src="images/slideshow/bannerexample.jpg" width="634" height="180" /></div>
<div id="content">
<h2>example title</h2>
<p>
<snipped specifics></p>
<h1>example heading</h1>
<p>
<snipped specifics></p>
</div>
<div id="sponsors">
<h5>example</h5>
<h3><a href="#">example</a><br/>
02/22/2010 - 02/26/2010</h3>
<h3><a href="#">example</a><br/>04/16/2010 - 04/18/2010</h3>
<h3><a href="#">example</a><br/>05/24/2010 - 05/28/2010</h3>
<h3><a href="#">example</a><br/>06/14/2010 - 06/20/2010</h3>
<h3><a href="#">example</a><br/>09/20/2010 - 10/05/2010</h3>
</div>
<div id="links"><h2><a href="#">\Example Text</a></h2>
<p><a href="#">Become a fan of us on Facebook!</a> </p>
<h5>Join Our Mailing List</h5>
<form action="mailto:me@example.com?subject=Hello there." method="post" name="form1" target="_blank" id="form1">
<input name="E-mail address" type="text" value="e-mail address" />
<input type="submit" name="Submit" value="Submit" />
</form>
<p>
</p>
</div>
<div id="contact"><p><a href="mailto:info@example.com">info@example.com</a></p></div>
</body>
</html>
AND HERE IS MY FULL CSS:
/* CSS Document */
#nav{position:absolute;top:150px;left:0;list-style:none;z-index:99;background:#393C9C;
}
#nav li{float:left;padding:9px 30px;position:relative;}
#nav ul li a{font-size:9pt;}
#nav a{color:#FFF;font-weight:bold;font-size:10pt;text-decoration:none;white-space:nowrap;}
#nav a:hover{text-decoration:none;}
#nav li ul{display:none;list-style:none;position:absolute;top:28px;left:0;background:#FFF;border-bottom:2px solid #FFF;}
#nav li:hover ul{display:block;}
#nav li ul li{float:none;position:static;border:1px solid #FFF;border-bottom:0;background:#669966;font-size:9pt;padding:0;height:31px;width:215px;}
#nav li ul li a{padding:6px 13px;display:block;height:19px;width:auto;}
#nav li ul li:hover{background:#7286CD;}
#nav li:hover{background:#669966;}
#links {
width: 270px;
position: absolute;
left: 0px;
top: 12px;
margin-top: 370px;
border-top-width: 2px;
border-top-style: solid;
border-top-color: #0066CC;
margin-left: 38px;
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: #0066CC;
background-color: #EFEFEF;}
#links p{ font-family: Arial; font-size: 10px; color: #000000;}
#sponsors {
width: 275px;
position: absolute;
top: 12px;
right: 0px;
margin-top: 175px;
margin-right: 44px;
background-color:#FFFFCC;
}
#banner{
width: 634px;
position: absolute;
top: 12px;
left: 0px;
margin-top: 175px;
margin-left: 40px;
}
#pagetemp1{
width: 420px;
position: absolute;
top: 12px;
left: 0px;
margin-top: 200px;
margin-left: 250px;
}
#pictemp1{
width: 250px;
position: absolute;
top: 12px;
left: 0px;
margin-top: 200px;
margin-left: 40px;
}
#sponsor h5 {
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
text-align: center;
text-decoration: underline;
}
#content {
margin-top: 220px;
margin-left: 310px;
margin-right: 325px;
}
#contact {
position: absolute;
bottom: 1000px;
right: 0px;
margin-top: 10px;
margin-right: 100px;
}
body {background-color: #FFFFFF; background-image: url(images/blueback.jpg); background-repeat: repeat; font-family: Arial; }
h1 { font-family: Arial; font-size: 12px; color: #469e36; }
h2 { font-family: Arial; font-size: 12px; color: #393C9C; }
h3 { font-family: Arial; font-size: 12px; color: #669966; }
h4 { font-family: Arial; font-size: 12x; color: #000000; }
h5 { font-family: Arial; font-size: 12px; color: #CC3333; }
h6 { font-family: Arial; font-size: 8px; color: #000000; }
p { font-family: Arial; font-size: 12px; color: #000000;}
contact{
position:absolute;
top: 500px;
left:0px;
}
---
Also, the contact is not formatting correctly- and everytime I "restore down" the page content jams up. I'm so stuck. As I said, this is my first project on my own. I appreciate any assistance!
[edited by: limbo at 9:35 am (utc) on Feb 5, 2010]
[edit reason] Examplified [/edit]