Gradient Repeating?

I’m trying to fade my background from color #1c385a to #141721 so I have


background: #1c385a; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzFjMzg1YSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNDE3MjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #1c385a 0%, #141721 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1c385a), color-stop(100%,#141721)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #1c385a 0%,#141721 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1c385a 0%,#141721 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1c385a 0%,#141721 100%); /* IE10+ */
	background: linear-gradient(top,  #1c385a 0%,#141721 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1c385a', endColorstr='#141721',GradientType=0 ); /* IE6-8 */
	}

Generated from http://colorzilla.com/gradient-editor/ but it seems that the gradient repeats itself after I scroll down the page… How do I make it so after the first gradient is complete, the background is just #141721 instead of repeating the whole gradient again?

Add no-repeat to each background: entry. So you would have (for example):

background: -moz-linear-gradient(top, #1c385a 0%, #141721 100%) no-repeat; /* FF3.6+ */

Also, where it says background: #1c385a; /* Old browsers */, that should be ‘#141721’ because that’s the background color you wanted. Or did you want the background on browsers that don’t do gradients to be the light color?

ah thank u! cant believe i didnt htink about that. and your right it should be 141721.

Thanks!