Here is my website, and I’m using this CSS to apply my fade effect for my post images:
.post img {
opacity: 0.6;
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}
.post img:hover{
opacity: 1.0;
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}
Got it fixed – turns out it was in the singlepost.php file. Just had to delete one line, <h1>news & events</h1>.