Home › Forums › All Other Themes › Naturo Pro – jquery appear
- This topic has 11 replies, 2 voices, and was last updated 8 years, 9 months ago by Sonl Sinha.
-
AuthorPosts
-
January 17, 2016 at 10:04 pm #18929
How do I get the feature boxes to appear as soon as someone visits the website? Under the slider just looks blank, like there’s no content.
Many thanks.
January 18, 2016 at 5:56 am #18961Hi,
Within sections there is a class field with class written. Remove that and you wonโt have the animations.
Regards,
ShriJanuary 21, 2016 at 2:14 am #19412what file do I go into to change this? Can you please let me know what lines of code to remove?
January 21, 2016 at 10:28 am #19520Hi Tina,
Kindly see this: https://www.sktthemes.org/forums/topic/home-page-responsive-display/
Regards,
ShriJanuary 22, 2016 at 3:28 pm #19783I just screwed up my site by editing my style.css and replacing it on the ftp. All of my work is gone and somehow now it’s showing “Minimal WordPress theme” and I can’t get my stuff to show up.
Please help as soon as possible.
So I’ve just I deleted my js file that i put on the ftp, and i put the old style sheet back…. BUT i don’t think i should have used the actual file in the first place – as you had mentioned in your link you sent me. I think it should’ve been done through the editor. But still, everything is back as it should be, except for all my work ๐
http://needenergyhealing.com/wp-admin
U: userDEV
P: 123wpDEV123January 22, 2016 at 3:30 pm #19784If it’s possible to get the site back to how it should be, can you please provide the line of type i need to remove in js?
Thanks so muchJanuary 22, 2016 at 3:38 pm #19786I got it back! ๐
moving forward, can you please provide the line of type i need to remove in js?
January 22, 2016 at 4:21 pm #19790Update: I think I have it now, but I’m still getting a “bounce” with the feature boxes when I start scrolling down. Please let me know what I’m missing.
I also had to remove the animation for the testimonials text as the text wasn’t showing up still. Wish there was a better solution so I could keep the animation…?
January 22, 2016 at 4:53 pm #19793Line 101 to 137 of custom.js file…if this helps…
// navigation orientation resize callbak
jQuery(window).bind(‘resize orientationchange’, function() {
ww = jQuery(window).width();
adjustMenu();
});var adjustMenu = function() {
if (ww < 981) {
jQuery(“.toggleMenu”).css(“display”, “block”);
if (!jQuery(“.toggleMenu”).hasClass(“active”)) {
jQuery(“.nav”).hide();
} else {
jQuery(“.nav”).show();
}
jQuery(“.nav li”).unbind(‘mouseenter mouseleave’);
} else {
jQuery(“.toggleMenu”).css(“display”, “none”);
jQuery(“.nav”).show();
jQuery(“.nav li”).removeClass(“hover”);
jQuery(“.nav li a”).unbind(‘click’);
jQuery(“.nav li”).unbind(‘mouseenter mouseleave’).bind(‘mouseenter mouseleave’, function() {
jQuery(this).toggleClass(‘hover’);
});
}
}jQuery(window).scroll(function() {
jQuery(‘.welcome-wrap’).each(function(){
var imagePos = jQuery(this).offset().top;var topOfWindow = jQuery(window).scrollTop();
if (imagePos < topOfWindow+400) {
jQuery(this).addClass(“fadeInLeft”);
}
});January 25, 2016 at 6:55 pm #20201Hi Shri,
Any idea how to get rid of the animation bounce with the 4 feature boxes while scrolling? There’s still a div showing up and I’m not sure how to over-write it. Can you please tell me where it is located?
<div class+”services-wrap fadeInRight”></div>Hopefully that will fix it…?
Thanks
February 9, 2016 at 3:18 pm #22072Shri,
Can you please provide an answer to this?
Thanks.
February 10, 2016 at 5:14 am #22151Hi Tina,
Kindly go to custom.js and remove the code Line Number 113 to 186.
After that go to style.css and remove the visibility:hidden from the section
Regards,
Brad -
AuthorPosts
- You must be logged in to reply to this topic.