-
1 Attachment(s)
*resolved* forms
I've attached a zip file with
index4.html
search.html
dropdown.html
search.gif
Please note: search.gif has to be inside a folder named images.
Now, index4.html is the main file, and search and dropdown are included html files in there. For some reason, I can't get
"SOMEIMAGEHERE""Dropdown""Searchtext" to align. You'll see when you open it.
Can you help?
Thanks in advance.
-
Well, I found out the problem is <FORM>
If you open search.html and remove the form tags, it all lines up properly.
I guess the question MIGHT be, How can I implement this: in javascript?
THIS:
Code:
<form method="GET" action="http://www.google.com/custom" align="left">
<input TYPE="text" name="q" size="6" maxlength="255"
value="search" style="color:red; font-size:8; border-color:orange; background: #dddddd;" >
<!-- <input type="submit" name="sa" VALUE="Search"
style="color: red; text-decoration:underline; font-weight:bold; border-color:orange; background: #f8e8d0; cursor:hand; width:60; font-size:8;" >-->
<input type="image" src="images/search.gif" alt="Search" align="bottom" width="22" height="22" >
<!--webbot bot="HTMLMarkup" startspan TAG="XBOT" --><INPUT type="hidden" name="cof" VALUE="GIMP:black;T:black;LW:450;ALC:red;L:http://www.something.com/images/bdc8...ad6dc6a6f7004;"><!--webbot bot="HTMLMarkup" endspan
-->
</form>
I want to remove the <FORM> tags and be able to do this.
OR if someone's figured out a way to do that using style tags or whatever... I'll be grateful for anything that gets me closer than where I am right now.
-
I figured it out!!
Just place the <FORM> tags outside the table itself, makes no difference!
Thanks to whoever downloaded that ZIP file anyways.