Hi, etidd.
The bottom of your HTML page should look like this: (there were a few divs out of place in there somewhere.)
Code:
<!-- begin side windows -->
<div id="leftside">
<div id="leftsideend"> </div>
<div id="leftsidebody">
<h2 class="sideWindowHeaderText">Most Popular</h2>
<ul class="sideWindowLinks">
<li><a href="food/peapod1.html">Peapod</a></li>
<li><a href="health/dieting/southbeach1.html">South Beach Diet</a></li>
<li><a href="coupons/brandcaster1.html">Brandcaster Coupons</a></li>
</ul>
</div>
<div id="leftsidestart"> </div>
</div>
<!-- end leftside div -->
<!-- begin rightside div -->
<div id="rightside">
<div id="rightsidestart"> </div>
<div id="rightsidebody">
<h2 class="sideWindowHeaderText">Not Recommended</h2>
<ul class="sideWindowLinks">
<li><a href="#">Anthony Morrison's Big Profits Secret</a></li>
<li><a href="#">Mobile Mass Media</a></li>
<li><a href="#">Prorexin</a></li>
</ul>
<form id="emailbox" name="form1" method="post" action="?">
<div>
<input type="text" name="go" id="go" value="your e-mail" onclick="input_focus(this)" onblur="input_reset(this)" maxlength="60"/>
<input type="submit" value="Join" onclick="seeWhatHappened()" />
</div>
</form>
</div>
<div id="rightsideend"> </div>
</div>
<!-- end side windows -->
<div id="confirmform">
<form name="form2" id="submissionform" method="post" action="?">
<label for="confirmemail">Confirm your e-mail:<span>*</span></label>
<input type="text" name="confirmemail" class="fixedwidth" value="" maxlength="60"/><br />
<label for="name">Enter your name:<span>*</span></label>
<input type="text" name="name" class="fixedwidth" value="" maxlength="60" /><br />
<label for="age">Select your age range:</label>
<select name="age" class="fixedwidth">
<option selected="selected">18–35</option>
<option>36–55</option>
<option>55+</option>
<option>17 or younger</option>
</select><br />
<label for="country">Select your country:<span>*</span></label>
<select name="country" class="fixedwidth">
<option selected="selected">Select</option>
<option>United States</option>
<option>United Kingdom</option>
<option>Canada</option>
<option>Australia</option>
<option>Russia</option>
<option>Brazil</option>
<option>Somewhere else</option>
</select><br />
<input type="submit" value="Sign Me Up!" class="formsubmitbutton" onclick="checkEmail()"/>
<input type="submit" value="Cancel" class="formsubmitbutton" onclick="backToHomePage()"/>
</form>
</div>
</div><!-- end container -->
<script type="text/javascript" src="Scripts/emailbox.js"></script>
</body>
</html>
You will also need to change a couple of values in css:
Code:
#confirmform{
background:url("emailsubmission.gif") no-repeat scroll 50% 0 transparent;
width:360px;
height:200px;
position:absolute;
right:492px; /* increased from right:392px */
top:530px; /* increased from top:130px */
}
You might also want to fix the font-family declaration in the body element. It's sorta broken.
Code:
body{
background:url(bg2.jpg);
background-position:top center;
background-color:#999;
margin:0 auto;
overflow:hidden;
font-family:Times "Times New Roman", Times, serif;
}
And I wonder why you added another body element at the bottom of the css sheet. Seems kinda odd.
Code:
body{
overflow:auto; /* ??? */
}
Bookmarks