MyBB Community Forums

Full Version: "Loading... Please wait." template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know the location for the "loading... please wait" template/frame?

This one:
[Image: 8LqB9iT.png]

I want to change it to something a bit more flashy, but I have no idea where I can find it.

Thanks.
It is in the css of the theme and the general.js
It's in your images folder named spinner_big.gif Smile
(2013-02-06, 03:41 PM)Leefish Wrote: [ -> ]It is in the css of the theme and the general.js

Thanks! (Oh boy, I have no idea how to edit a js that generates divs, this should be fun)

(2013-02-06, 03:42 PM)JovanJ. Wrote: [ -> ]It's in your images folder named spinner_big.gif Smile

Thanks. I meant the template though, not the image Toungue
What did you want to change? Just the color? I changed the background color on mine (and added a nicer spinner) by editing the css.

#spinner {
     background: #101010 !important;
     color: #e7e7e7 !important;
     border: 1px solid #212121 !important;
 }
(2013-02-06, 04:00 PM)Leefish Wrote: [ -> ]What did you want to change? Just the color? I changed the background color on mine (and added a nicer spinner) by editing the css.

#spinner {
     background: #101010 !important;
     color: #e7e7e7 !important;
     border: 1px solid #212121 !important;
 }

Ooooo, i didnt think to use overrides. nice Toungue so i edited the js for what i needed and I just added the override class as:

#spinner{
-webkit-border-radius: 10px;    
    border-radius: 10px;
-webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
}