I want to greyscale the pet treasures and gender symbol for Watsun; how would I go about doing this?
Any and all help will be appreciated.
You would have to do that in Photoshop/GIMP and then do an overlay or something. There's no CSS code to do it.
: Well, that's depressing. I don't suppose there's even a code to at least change the appearance when hovering over the items (make them appear greyed out until hovered over, or vice-versa)?
Not really. You can make them partially-transparent before/after hover.
The code for that should be:
.treasure_item img { opacity: 0.5; } .treasure_item img:hover { opacity: 1; }