MyBB Community Forums

Full Version: Change Spinner Background?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I can't find this option anywhere.

Where do you edit the background of the Loading Popup after posting?
add #spinner to your global CSS and use !important to style it.
any example??
#spinner {
background: #000; !important
}

Important overrides any other tag in place if there is one.
ammmm and if me need retire the background?? and the border???
(2010-07-21, 03:02 AM)Jessie S. Wrote: [ -> ]#spinner {
background: #000; !important
}

Important overrides any other tag in place if there is one.

It did not work.
Added it at the bottom, but nothing changed.
its an image find the image and change the bg in photoshop.
You have to edit the javascript file. It's hard coded.
(2010-07-29, 01:48 AM)Lyndon D. Wrote: [ -> ]its an image find the image and change the bg in photoshop.
Yes but, there's a text in the box too.

(2010-07-29, 03:25 AM)labrocca Wrote: [ -> ]You have to edit the javascript file. It's hard coded.
Thought it only was CSS.
(2010-07-28, 09:30 PM)NeoFusion720 Wrote: [ -> ]
(2010-07-21, 03:02 AM)Jessie S. Wrote: [ -> ]#spinner {
background: #000; !important
}

Important overrides any other tag in place if there is one.

It did not work.
Added it at the bottom, but nothing changed.

the code needs to be background: #000 !important;

the !important goes inside the semicolon not after
Pages: 1 2