Genesis - How to remove fade-up effect

Some of our Premium Wordpress theme have a "fade-up" effect on the homepage, which smoothly loads sections of the page as you scroll down. If you'd like to remove this feature, here's how:

1. Go to WordPress > Appearance > Editor.

2. Click your cursor inside the code box. Press Ctrl + F (or Command + F on Mac) and search fadeup-effect

3. You'll be taken to this section:

@media only screen and (min-width: 1021px) {
.js .fadeup-effect {
	opacity: 0;
	overflow: hidden;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}


@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(18px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}


@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.fadeInUp {
	animation-name: fadeInUp;
	-webkit-animation-name: fadeInUp; }
}

4. Remove all of the code shown above. Click Update File.

If you don't see the change on your site after removing the code, you may need to clear your browser cache.