How do I change the throbber graphic in the top right corner?
There are two files required for a throbber. One is the still graphic, and the other is the animated graphic that is displayed when SeaMonkey is busy. Name them accordingly: animthrob_single.gif animthrob.gif Then copy the new throbbers into your profile directory’s chrome folder, and add the following lines to your userChrome.css: #navigator-throbber { list-style-image : url(“animthrob_single.gif”) !important; } #navigator-throbber[busy=”true”] { list-style-image : url(“animthrob.gif”) !important; } Actually, you can name the files whatever you like, as long as they match the names in the userChrome.css lines.