Ok, after our little discussion on the topic of the Profile Field Manager in AdminCP here:
https://vborg.vbsupport.ru/showthread.php?t=70997
I decided to figure out why the User Profile Manager didn't work in FireFox but did in IE. As a result I've figured out a quick and easy fix
Step 1: Open /admincp/profilefield.php
Step 2: Do a search for:
PHP Code:
echo "
<col width=\"50%\" align=\"$stylevar[left]\"></col>
<col width=\"50%\" align=\"$stylevar[left]\"></col>
<col align=\"$stylevar[left]\" style=\"white-space:nowrap\"></col>
<col align=\"center\" style=\"white-space:nowrap\"></col>
<col align=\"center\" style=\"white-space:nowrap\"></col>
";
Step 3: Replace that with:
PHP Code:
echo "
<col width=\"50%\" align=\"$stylevar[left]\"> </col>
<col width=\"50%\" align=\"$stylevar[left]\"> </col>
<col align=\"$stylevar[left]\" style=\"white-space:nowrap\"> </col>
<col align=\"center\" style=\"white-space:nowrap\"> </col>
<col align=\"center\" style=\"white-space:nowrap\"> </col>
";
And it should work fine

Let me know if you're still having a problem (along w/ the browser and release)
John