Forum Moderators: open
I guess the question is are there attributes that can be added to make Firefox see the button as IE does?
Have you styled the button with any CSS at all?
Windows XP adds a mouse over highlighting effect.
This was working:
[3]</div>
<p>
<input type="submit" name="Submit" value="Search">
</p>
</form>
</div>
[/3] This was the page that had the bug:
[3]<tr><td colspan="2">
<p><input type="submit" name="Submit" value="Search">
</p></td></tr>
</table>
</div>
</form>
</div>
[/3] By moving the <input> down next to the </form> it solved the problem:
[3] </td>
</tr>
</table>
</div>
<p>
<input name="Search" type="submit" id="Search" value=" Search">
</p>
</form>
</div>
[/3]