# css file change from original to sprite conversion #

problem #1:

blockquote {
    margin: 10px;
    padding: 0 0 0 28px;  
   border: 1px solid #f2f2f2; 
    background: #FAFAFA url(quote.gif) no-repeat 5px 5px;
}
.sprite-quote{ background-position: 0 -911px; width: 30px; height: 30px; }
#container li {
    background: url(csg-53ecf340900b5.png) no-repeat top left;
}

Here's what I did and it didn't work:

blockquote {
    margin: 10px;
    padding: 0 0 0 28px;  
   border: 1px solid #f2f2f2; 
    background: #FAFAFA url('csg-53ecf340900b5.png') 0 -911px; no-repeat 5px 5px;
}

What am I doing wrong?
Thanks!

Your background in the second version is incorrect.
Firstly you have an extra semi-colon in there and the 0 -911px shouldn't even be there. The shorthand for the background selector is color, image, repeat, attachment, position.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.