I've tried modifying the background color in the CSS for the three mainfeatures selectors but it hasn't changed the appearance of them. I downloaded the png also for it and created a new png the same size, but haven't been able to make it appear in the boxes yet. I just uploaded it to the same folder and changed the name to the same as the previous one. Then changed the originals name. What should be changed in order to change the three colors with animation? Is there another way I should go about changing the white images in the boxes? Thanks!!
.gkCrop,
.gkHTML5,
.gkResponsiveDesign {
background: transparent url("../../images/features_icons.png") no-repeat 0 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
display: block;
height: 137px;
overflow: hidden;
text-indent: -9999px;
width: 100%;
}
.gkCrop {
-webkit-animation-name: cropanim;
-webkit-animation-duration: 6s;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: cropanim;
-moz-animation-duration: 6s;
-moz-animation-iteration-count: infinite;
animation-name: cropanim;
animation-duration: 6s;
animation-iteration-count: infinite;
background-position: center 0;
background-color: #484848;
}
.gkHTML5 {
-webkit-animation-name: html5anim;
-webkit-animation-duration: 6s;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: html5anim;
-moz-animation-duration: 6s;
-moz-animation-iteration-count: infinite;
animation-name: html5anim;
animation-duration: 6s;
animation-iteration-count: infinite;
background-position: center -137px;
background-color: #000066;
}
.gkResponsiveDesign {
-webkit-animation-name: responsiveanim;
-webkit-animation-duration: 6s;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: responsiveanim;
-moz-animation-duration: 6s;
-moz-animation-iteration-count: infinite;
animation-name: responsiveanim;
animation-duration: 6s;
animation-iteration-count: infinite;
background-position: center -274px;
background-color: #990000;
}