Well first of all your navbar is encased in a table that has 1 row and 1 cell. If you EVER have a table with 1 row and 1 cell in your code, immediately replace it with a div or something because why have a table when there's just one cell? No point, it clutters up your code, makes your page load slower, etc etc
Replace the <table cellpadding="0" cellspacing="0"><tr><td align="right"> with:
Code:
<div style="text-align:right;padding-right:30px;">
And replace the </td><td style="width:30px"></td></tr></table> with:
Even better would be to apply that formatting to the "homelinkbar" div id in your css file, and replace the table with nothing.
Do that and then see if IE and Firefox still display differently.
|