Hi rob edmunds,
I am sorry for this late. In this case, you can do as following:
1+ go to your_site\templates\sj_me\includes\bottom.php finding:
jQuery(document).ready(function($){
anyLoaded3();
});
=>
jQuery(document).ready(function($){
//anyLoaded3();
});
---------------------
anyLoaded3();
if(click == true){
return;
}
=>
//anyLoaded3();
if(click == true){
return;
}
2+ go to your_site\templates\sj_me\css\template-yellow.css (template-colordefault) finding and remove:
.block .container {
opacity: 0.2;
-webkit-animation: fadeIn 2000ms ease both;
-webkit-animation-play-state: paused;
-moz-animation: fadeIn 2000ms ease both;
-moz-animation-play-state: paused;
-o-animation: fadeIn 2000ms ease both;
-o-animation-play-state: paused;
animation: fadeIn 2000ms ease both;
animation-play-state: paused;
}
Thanks!