Hello,
To remove the two icons (namely zoom and link) and to remove the fade effect on the pic at rollover, in order to have a standard clickable picture, I used this code for the Portfolio page (see Link 1) in style.css:
.portfolio-image .zoom {
display: none;
}
It works perfectly.
To have the same effect on the Blog page (see Link 2) I used a very similar code in style.css:
.wp-picture .zoom {
display: none;
}
But in this case it doesn’t work. It removes the two icons (zoom and link) and removes the fade effect too, but after it removes the link at all. Therefore now it isn’t a standard clickable picture as I wanted. How to correct the code?