I want all of my posts to fade, but it only fades posts with just one picture. Help?

seen from Syria
seen from China
seen from Canada

seen from Malaysia
seen from China
seen from Saudi Arabia
seen from Pakistan
seen from Saudi Arabia
seen from Mexico
seen from China
seen from United States
seen from Italy

seen from Saudi Arabia
seen from United States

seen from Canada
seen from China

seen from United States
seen from United States

seen from Canada

seen from Germany
I want all of my posts to fade, but it only fades posts with just one picture. Help?
how do you make your pictures become pale, when you click on them? ty xx
you mean when the pictures get less pale when you hover them? it’s an effect that came with this theme, you can find the theme I have here, or search for a theme that have an effect called "image fade" or something like that :) xoxo
Image fade effect
1. Paste this code underneath <style type=text/css>
img{
-webkit-transition: opacity 0.8s linear;
opacity: 1;
}
img:hover{
-webkit-transition: opacity 0.8s linear;
opacity: .6;
}
2. You can change the opacity to make it fade more or less.
3. Save and you're done.
Post image fade + grayscale tutorial!
so requested by many, here is a quick tutorial on how to make your blog images fade, or turn gray
I hope you enjoy!
Read more
How to Make Images Fade on Blog
Copy the following and paste it before </style> in your theme:
img {
padding: 0px; filter: alpha (opacity=100); opacity: 1.0; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; transition: all 0.3s ease-out;cursor: } img:hover { filter: alpha (opacity=80); opacity: 0.80; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; transition: all 0.5s ease-out;cursor: }
change the opacity to your liking~