show/hide this revision's text 3 added 35 characters in body

does it have to be gray? you could just set the opacity of the image lower (to dull it). alternatively, you could create a <div> overlay and set that to be gray (change the alpha to get the effect).

html:

<div id="wrapper"><img id="myImage" src="something.jpg" /></div>

css:

#myImage {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
}

or:

<div id="wrapper"><img src="something.jpg" /></div>

/ or

#wrapper    {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
    background-color: #000;
}
show/hide this revision's text 2 deleted 6 characters in body

does it have to be gray? you could just set the opacity of the image lower (to dull it). alternatively, you could create a <div> overlay and set that to be gray (make it like 50% change the alpha to get the effect).

#myImage {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
}

or:

<div id="wrapper"><img src="something.jpg" /></div>

#wrapper    {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
    background-color: #000;
}
show/hide this revision's text 1

does it have to be gray? you could just set the opacity of the image lower (to dull it). alternatively, you could create a <div> overlay and set that to be gray (make it like 50% alpha to get the effect).

#myImage {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
}

or:

<div id="wrapper"><img src="something.jpg" /></div>

#wrapper    {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
    background-color: #000;
}