find custom.js file in ‘js’ folder with in ‘abaris’ theme folder.
comment out every thing between line no. 34 to 64.
Like this http://pastebin.com/npkwKA4R
Thank you for prompt answer.
Unfortunately it did’t work.
In this case text is not showing up at all, the icons still show up after I scroll down the page.
i am using WordPress 3.9.
Maybe you can post your custom.js from http://webulous.in/
Thank you
Andrei
I was able to go around the issue by replacing in custom.js line 21
$(window).scroll(function() {
to
$(window).load(function() {
In this case animation is triggered after the element in loaded.
As a result I do have my animation and the beginning of page without scrolling it. Because I do not have anything to scroll as all my text and element fit in one page.
FYI:
$(window).ready(function() { works to.
Don’t know the differences between load and ready.
Hi Andrei,
Sorry I didn’t check my solution when posted. If you still want to remove animation, comment out this code in custom.js
http://pastebin.com/T261AhUK
And add this css rule, in custom css box in Theme Options panel.
#service1, #service2, #service3 { visibility: visible; }
I’ve tested this and it works..