Change loading effect to my own

Hi,



I am looking to change the loading effect for the cs cart to my own effect.



Any suggestion where to find the css. I looked deep in style.css but not able to get any.





Guide me in right path guys.





Thanks,

Everything you will need to change your site layout is here, here and here.

@stellar thanks for the suggestion. I have looked in the following three sections all ready but there where no solution or my topic was not covered there.





I all ways double check the doc and forum then posting as it saves lot of time for me to solve the porb instantly then waiting for reply.



If you have a solution for how to change loading effect let me know.



Thanks for the reply and post. @stellarbytes Lets keep this forum live so it will be helpful for many new cs cart owners.



Note: Still there is no proper documentation for version 4.

[quote name='StellarBytes' timestamp='1380647001' post='169000']

Everything you will need to change your site layout is here, here and here.

[/quote]



Actually those links provided by StellarBytes is NOT everything you need. It's everything you need for version 3 and below!

Ravt I changed my loader by overwriting the CSS using my_changes plugin. You can only achieve simple changes this way though… e.g. I made it popup in center of screen and changed the loader image.



.ajax-loading-box {

position: fixed;

top: 50%;

right: 50%;

z-index: 10000;

display: none;

padding: 0px;



}

.ajax-inner-loading-box {

background: url(“my_loader_img.png”) no-repeat scroll 3px 4px rgb(69, 69, 69);

}

Much Helpful @philspeak . Its really pain that there is no proper documentation for version 4. I feel myself kind of a scientist doing all my trail and error lol.



I broke nearly 4 installation now starting with new one. Hope I learn more from this.



Thanks for the solution I will try to implement it.