HTML Code problem

Status
Not open for further replies.

hailgautam

Youngling
Hi,
I am trying to add google search function to my blog *gomzyxl.blogspot.com/

the code as given by google is given below. however it is looking a little odd on the site, can anyone help me on this. I have no HTML programing knowledge.


<!-- SiteSearch Google -->
<form method="get" action="*www.google.co.in/custom" target="google_window">
<table border="0" bgcolor="#ffffff">
<tr><td nowrap="nowrap" valign="top" align="left" height="32">

<br/>
<input type="hidden" name="domains" value="gomzyxl.blogspot.com"></input>
<input type="text" name="q" size="25" maxlength="255" value=""></input>
</td></tr>
<tr>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input type="radio" name="sitesearch" value="" checked="checked"></input>
<font size="-1" color="#000000">Web</font>
</td>
<td>
<input type="radio" name="sitesearch" value="gomzyxl.blogspot.com"></input>
<font size="-1" color="#000000">gomzyxl.blogspot.com</font>
</td>
</tr>
</table>
<input type="submit" name="sa" value="Google Search"></input>
<input type="hidden" name="client" value="pub-3966882698364083"></input>
<input type="hidden" name="forid" value="1"></input>
<input type="hidden" name="ie" value="UTF-8"></input>
<input type="hidden" name="oe" value="UTF-8"></input>
<input type="hidden" name="safe" value="active"></input>
<input type="hidden" name="cof" value="GALT:#E9382F;GL:1;DIV:#CCCCCC;VLC:7E3939;AH:center;BGC:FFFFFF;LBGC:FF3333;ALC:E9382F;LC:E9382F;T:000000;GFNT:7E3939;GIMP:7E3939;FORID:1"></input>
<input type="hidden" name="hl" value="en"></input>
</td></tr></table>
</form>
<!-- SiteSearch Google -->
 

iMav

The Devil's Advocate
wat do u mean by odd .... u r referring to the position or something else .... u can try frontpage it is very helpful for people new to html coding
 

shaunak

Tux Fan
Try this :
Code:
 <!-- SiteSearch Google -->
<form action="*www.google.co.in/custom" target="google_window" method="get">

<tr><td nowrap="nowrap" valign="top" height="32" align="left">

<br/>
<input value="gomzyxl.blogspot.com" name="domains" type="hidden"/></td></tr></table></form>
<input maxlength="255" value="" name="q" size="20" type="text"/>

<tr>
<td nowrap="nowrap">
<table>
<tr>
<td>
<input checked="checked" value="" name="sitesearch" type="radio"/></td></tr></table></td></tr>
<font color="#000000" size="-1">Web</font>

<td>
<input value="gomzyxl.blogspot.com" name="sitesearch" type="radio"/></td>
<font color="#000000" size="-1">gomzyxl.blogspot.com</font>



<input value="Google Search" name="sa" type="submit"/>
<input value="pub-3966882698364083" name="client" type="hidden"/>
<input value="1" name="forid" type="hidden"/>
<input value="UTF-8" name="ie" type="hidden"/>
<input value="UTF-8" name="oe" type="hidden"/>
<input value="active" name="safe" type="hidden"/>
<input value="GALT:#E9382F;GL:1;DIV:#CCCCCC;VLC:7E3939;AH:center;BGC:FFFFFF;LBGC:FF3333;ALC:E9382F;LC:E9382F;T:000000;GFNT:7E3939;GIMP:7E3939;FORID:1" name="cof" type="hidden"/>
<input value="en" name="hl" type="hidden"/>


<!-- SiteSearch Google -->

Done some minor changes to the formating. Should help. Completely replace the old code with the one above.
 
OP
hailgautam

hailgautam

Youngling
@shaunak it helped a little, like earlier there was a white patch which is gone now.

but still the radio buttons for web and gomzyxl.blogspot.com are postioned in an odd manner.

thank you very much for your help.
 
Status
Not open for further replies.
Top Bottom