Viewing 2 replies - 1 through 2 (of 2 total)
  • Digest WP

    (@jay-stankiewicz)

    Hello,

    This is the CSS where the image is coming from

    #site-features .feature .icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: url(images/sprites/feature.png) no-repeat;
    float: left;
    }

    You would have to open your image/sprites folder and replace that image with your new icon using the same name. Another option is to change the CSS to your new image URL.

    replace the image in images/sprites/ folder named feature.png:

    #site-features .feature .icon {
        position: relative;
        width: 40px;
        height: 40px;
        background: url("images/sprites/feature.png") no-repeat scroll 0% 0% transparent;
        float: left;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Pitch] Feature img bullet icons’ is closed to new replies.