To fix this problem, you must insert a blank form in the page "/templates/page_top.html". It is suggested that you insert this form in the same table cell as the Language drop-down was located. The form code may look like this:
<form name="fake" id="fake"></form>
But the page_top.html doesn't have a table, it utilizes div. So I changed it to tables. Here is my code:
- Code: Select all
<!--Start top and Logo-->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="header_logo" width="50%" align="left" valign="top">
<a href="index.php"><img src="images/logo.png" /></a>
<div><?php echo $output['form_html']; ?></div>
</td>
<td id="header" width="50%" align="right" valign="top" style="padding: 5px 10px 0px 0px;">
<a href="index.php">Home</a> <img src="images/line_dot.gif" hspace="10" align="absmiddle" alt="" border="0"/>
<?php echo $output['login_link']; ?> <img src="images/line_dot.gif" hspace="10" align="absmiddle" alt="" border="0" />
<a href="?page=contact_us"><?php echo $text['contact_us']; ?></a>
</td>
</tr>
</table>
<!--End top and Logo-->
Please help.
- maverick
