PDA

View Full Version : Forum Display Enhancements - VB 4 Filter effects


nookta
10-08-2017, 09:00 PM
When it comes to the image it gets its normal colors.
It is gray color without coming over.

Style Editing= CSS=>additional.css open. Add to bottom

Examples are like the following images.

Filmkolik
11-10-2017, 09:12 PM
Thanks nookta

Seven Skins
11-11-2017, 11:51 AM
Thanks,
But this is making all images gray color .. e.g. rank images, rep images, icons, logo, avatar, etc..

TheLastSuperman
11-18-2017, 11:36 PM
Thanks,
But this is making all images gray color .. e.g. rank images, rep images, icons, logo, avatar, etc..

Then we shall change it! :cool:

Add this to additional.css instead IF you only wish post images to be grayscale ;)
.postbody img{
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}

.postbody img:hover{
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}