Google Custom Search

Black&Red

Regular Member
Joined
Mar 14, 2008
Messages
450
Reaction score
252
I have very little problem and I bet it's basic html.
shouldbe.png


This is the situation, can anyone help?
Thanks!
 
Can you show us the html code and the css if not its hard to help you
 
<div id="html1" style="position:absolute; overflow:hidden; left:448px; top:341px; width:505px; height:125px; z-index:0">
<input type="text" name="q" size="50" /> <input type="image" src="/images/search.png" name="sa" value="Search" /> </div></form><script type="text/javascript" src="/cse/brand?form=cse-search-box&lang=en"></script></div>

This is end of code but I think it's pretty much all needed.

Thanks for any help!
 
use tables :)

make your code like this
HTML:
<div id="html1" style="position:absolute; overflow:hidden; left:448px; top:341px; width:505px; height:125px; z-index:0">
<table border="0" cellspacing="1" cellpadding="1">
<tr>
<td valign="middle">
<input type="text" name="q" size="50" />
</td>
<td valign="middle">
<input type="image" src="/images/search.png" name="sa" value="Search" />
</td>
</tr>
</table></div></form><script type="text/javascript" src="/cse/brand?form=cse-search-box&lang=en"></script></div>

THAT WILL WORK in any browser

you welcome
 
Thank you so much! :chef2::chef2::chef2:

use tables :)

make your code like this
HTML:
<div id="html1" style="position:absolute; overflow:hidden; left:448px; top:341px; width:505px; height:125px; z-index:0">
<table border="0" cellspacing="1" cellpadding="1">
<tr>
<td valign="middle">
<input type="text" name="q" size="50" />
</td>
<td valign="middle">
<input type="image" src="/images/search.png" name="sa" value="Search" />
</td>
</tr>
</table></div></form><script type="text/javascript" src="/cse/brand?form=cse-search-box&lang=en"></script></div>

THAT WILL WORK in any browser

you welcome
 
Back
Top