Where to change load icon?

Responsive, suitable for any type of business, built for any needs elegant one-page Joomla template.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Tue Nov 19, 2013 2:33 pm
Reply with quote
Report this post
I want to modify part of my website created withCreativity Joomla template. In the Image Show there is loading screen shows. Where can i change this load icon?

load-icon.GIF
User avatar
Junior Boarder

GK User
Tue Nov 19, 2013 6:14 pm
Reply with quote
Report this post
This is a css animation and changing it needs a lot more knowledge than simple replacing gif file :(.
User avatar
Moderator

GK User
Thu Nov 21, 2013 12:57 am
Reply with quote
Report this post
Ok. thanks, can you tell me please where can i find this animation, which container is it?

Cyberek wrote:This is a css animation and changing it needs a lot more knowledge than simple replacing gif file :(.
User avatar
Junior Boarder

GK User
Thu Nov 21, 2013 5:39 pm
Reply with quote
Report this post
Inside style.css there is this huge declaration:
Code: Select all
.gkIsWrapper-gk_creativity.notloaded .gkIsLoader {
-webkit-animation-name: gkistimer;
-webkit-animation-duration: 0.75s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: gkistimer;
-moz-animation-duration: 0.75s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
animation-name: gkistimer;
animation-duration: 0.75s;
animation-iteration-count: infinite;
animation-timing-function: linear;
border: 2px solid #FFF;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
content: "";
display: block;
height: 32px;
left: 48%;
position: relative;
top: 48%;
width: 32px;
}
User avatar
Moderator

GK User
Fri Nov 22, 2013 9:23 am
Reply with quote
Report this post
I found this code in gk.stuff.css, but i can't see any chnages effect, i tried to delete complete code but functionality was always the same, i can't also detect this container with dev. tool or firebug.
User avatar
Junior Boarder

GK User
Fri Nov 22, 2013 10:35 am
Reply with quote
Report this post
You will not detect this with firebug/google until you pause code execution just after loader shows. Even then you cant inspect elements, but you can travel through dom tree in dom inspector.
User avatar
Moderator


cron