MyBB Community Forums

Full Version: Where is the spinner container located
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Sorry I couldn't possibly make a screenshot of the spinner but it's the thing that pops up when you post a quick reply, also comes up on other occasions however that thing NAGS me. I already replaced the GIF which looks nice but there is a ugly white box with a (I believe 2px) black solid border, which is ugly although this could be easily styled to be as sexy as xenforo or whatever. I HAVE to change this, if this means messing with the core I'm ok with that. Just need to know where it is, couldn't figure that out yet.
Thanks in advance! Smile
That is in general.js You need to edit the general.js file and change the background image colour for the spinner.

                       this.spinner = document.createElement("div");
		this.spinner.style.border = "1px solid #000000";
		this.spinner.style.background = "#FFFFFF";
		this.spinner.style.color = "#000000";
Thank you very much Smile
If you don't want to fiddle with the js file, add this to your CSS (edit colors as necessary):
#spinner {
	background: #101010 !important;
	color: #e7e7e7 !important;
	border: 1px solid #212121 !important;
}
(2012-12-06, 06:35 AM)Tecca Wrote: [ -> ]If you don't want to fiddle with the js file, add this to your CSS (edit colors as necessary):
#spinner {
	background: #101010 !important;
	color: #e7e7e7 !important;
	border: 1px solid #212121 !important;
}

Thanks for this.