|
Hi,
I have one of those little translation boxes on my website and the code was supplied to me by the main translation company. The problem is the input box where someone can input text looks so small.
I want to increase the size of the box visually but not sure if I can modify it.
Did not want to paste too much code so I will paste only what looks like the most important part.
<script LANGUAGE="JavaScript1.2">
function RAS(n)
{
document.TRANS.elements[n].value="";
}
var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;
if (NS4)
{
document.write("<INPUT TYPE=\"text\" SIZE=\"50\" name=urltext OnFocus=\"javascript:RAS(0)\" VALUE=\"Type text to translate here...\">");
}
else
{
document.write("<INPUT TYPE=\"text\" SIZE=\"50\" name=urltext style=\"font-size:9pt;font-family:arial;color:000000;\" OnFocus=\"javascript:RAS(0)\" VALUE=\"Type text to translate here...\">");
}
</script>
</font>
--------------
If I have not supplied enough code just let me know and I will supply more.
Thanks in advance!
|