Hi,
Ok, as you will see from the code below, there should be a small bit of text which comes after the form if the DIV tag was to follow the correct positioning rules.
For some reason it does not, can someone please correct it for me so it appears AFTER the form
Thank you and much appreciated
Ok, as you will see from the code below, there should be a small bit of text which comes after the form if the DIV tag was to follow the correct positioning rules.
For some reason it does not, can someone please correct it for me so it appears AFTER the form
Thank you and much appreciated
Code:
<html>
<head>
</head>
<body>
<DIV STYLE="position: absolute; top: 100;">
<DIV "STYLE="position: relative; visibility: visible; left: 0px; top: 0px;">
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 40px; font-weight: bold; color: #000000; position: relative; visibility: visible; left: 0px; top: 0px;">
This is my lovely Banner </div>
<div style="position: relative; top: 80px; left: 100px">
<FORM METHOD=GET>
<fieldset>
<legend>Altering the City</legend>
The City Selection:
<select name="tFont">
<option selected>Select Background</option>
<option>SF</option>
<option>LA</option>
<option>NYC</option>
</select>
<br>
The Pigeon Size:
<select name="tSize">
<option selected>Select Pigeon Size</option>
<option>10</option>
<option>20</option>
<option>30</option>
</select>
</fieldset>
<BR>
<fieldset>
<legend>Altering the Duck Gallery</legend>
Duck Colour:
<select name="bBack">
<option selected>Select Duck Colour</option>
<option>Blue</option>
<option>Red</option>
<option>Green</option>
</select>
<br>
Bear Colour:
<select name="bFont">
<option selected>Select Color</option>
<option>Blue</option>
<option>Red</option>
<option>Green</option>
</select>
<br>
Tree Size:
<select name="bSize">
<option selected>Select Tree Size</option>
<option>10</option>
<option>20</option>
<option>30</option>
</select>
</fieldset>
<BR>
<fieldset>
<legend>Merlin - The one and only</legend>
Select to Use Merlin
<select name="agent">
<option>On</option>
<option>Off</option>
<option selected>On or Off</option>
</select>
</fieldset>
<input name="SUBMIT" type="SUBMIT" value="Change">
</FORM>
<div style="position: relative; right: 0px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; top: 120px; visibility: visible; left: 0px;">
For more information e-mail me@me.com<br>
Page maintained by <a href="mailto:me@me.com">Myself</a>
<!-- #BeginDate format:En2 -->19-Jul-2002<!-- #EndDate -->
</div></div></div> </div></div> </div>
</div> </div>
</body>
</html>[code]
James